mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* [DEV-97] Moved github.com/daglabs/btcutil into github.com/daglabs/btcd/btcutil. * [DEV-97] Updated Gopkg.toml to no longer refer to btcutil. * [DEV-97] Renamed btcutil to util.
17 lines
474 B
Go
17 lines
474 B
Go
// Copyright (c) 2013-2014 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package util
|
|
|
|
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
|
|
)
|