const.go raw

   1  package amt
   2  
   3  const (
   4  	// SatoshiPerBitcent is the number of satoshi in one bitcoin cent.
   5  	SatoshiPerBitcent Amount = 1e6
   6  	// SatoshiPerBitcoin is the number of satoshi in one bitcoin (1 DUO).
   7  	SatoshiPerBitcoin Amount = 1e8
   8  	// MaxSatoshi is the maximum transaction amount allowed in satoshi.
   9  	MaxSatoshi = 21e6 * SatoshiPerBitcoin
  10  )
  11