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