mirror of
https://github.com/LBRYFoundation/lbcutil.git
synced 2025-08-23 17:47:30 +00:00
Bring satoshi constants over to btcutil
This commit is contained in:
parent
93e46b9ffd
commit
e53f3f5d13
1 changed files with 16 additions and 0 deletions
16
const.go
Normal file
16
const.go
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
// Copyright (c) 2013 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 int64 = 1e6
|
||||||
|
|
||||||
|
// SatoshiPerBitcoin is the number of satoshi in one bitcoin (1 BTC).
|
||||||
|
SatoshiPerBitcoin int64 = 1e8
|
||||||
|
|
||||||
|
// MaxSatoshi is the maximum transaction amount allowed in satoshi.
|
||||||
|
MaxSatoshi int64 = 21e6 * SatoshiPerBitcoin
|
||||||
|
)
|
Loading…
Add table
Reference in a new issue