Search Apps Documentation Source Content File Folder Download Copy Actions Download

types.gno

0.11 Kb ยท 11 lines
 1package coinflip
 2
 3import (
 4	"chain"
 5)
 6
 7type Bet struct {
 8	Address address
 9	Result  bool
10	Amount  chain.Coin
11}