neoneo-go/pkg/core/spent_coin.go

11 lines
237 B
Go
Raw Normal View History

package core
import "github.com/nspcc-dev/neo-go/pkg/core/transaction"
// spentCoin represents the state of a single spent coin output.
type spentCoin struct {
Output *transaction.Output
StartHeight uint32
EndHeight uint32
}