forked from TrueCloudLab/neoneo-go
377fb382aa
As they're all about the state.
10 lines
237 B
Go
10 lines
237 B
Go
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
|
|
}
|