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