e0adcd5f70
Since these constants can be useful for int64, Amount, and float64 math, it doesn't make sense to make them just one type, and require type conversions for the rest. ok @davecgh
16 lines
476 B
Go
16 lines
476 B
Go
// Copyright (c) 2013-2014 Conformal Systems LLC.
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package btcutil
|
|
|
|
const (
|
|
// SatoshiPerBitcent is the number of satoshi in one bitcoin cent.
|
|
SatoshiPerBitcent = 1e6
|
|
|
|
// SatoshiPerBitcoin is the number of satoshi in one bitcoin (1 BTC).
|
|
SatoshiPerBitcoin = 1e8
|
|
|
|
// MaxSatoshi is the maximum transaction amount allowed in satoshi.
|
|
MaxSatoshi = 21e6 * SatoshiPerBitcoin
|
|
)
|