neoneo-go/pkg/compiler/testdata/block/block.go

10 lines
183 B
Go
Raw Normal View History

package block
// Block is opaque type.
type Block struct{}
// GetTransactionCount is a mirror of `GetTransactionCount` interop.
func GetTransactionCount(b Block) int {
return 42
}