module: run go mod tidy && go mod vendor

This commit is contained in:
George Tankersley
2019-02-14 18:56:16 +00:00
parent e910ee0475
commit 51614ecd2b
181 changed files with 41119 additions and 2 deletions

16
vendor/github.com/btcsuite/btcutil/const.go generated vendored Normal file
View File

@@ -0,0 +1,16 @@
// 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 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
)