lightwalletd/vendor/github.com/btcsuite/btcutil
Larry Ruane acca1a7c80 Update protoc grpc toolchain to latest
I installed the latest toolchain according to:
https://grpc.io/docs/languages/go/quickstart/

I updated the protoc command line arguments in Makefile based on
that quickstart guide, then I ran: make update-grpc

This has set the tool version (which you can see at the top of
any .pb.go file) to:

protoc-gen-go v1.25.0
protoc        v3.14.0
2021-01-05 18:20:10 -07:00
..
base58 Update protoc grpc toolchain to latest 2021-01-05 18:20:10 -07:00
bech32 module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
.gitignore module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
.travis.yml module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
LICENSE module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
README.md module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
address.go add GetLightdInfo RPC 2019-12-17 12:57:41 -07:00
amount.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
appdata.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
block.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
certgen.go rebase PR 175 - Use cobra and viper for configuration 2020-03-18 12:13:30 -06:00
const.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
cov_report.sh module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
doc.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
goclean.sh module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
hash160.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
net.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
net_noop.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
test_coverage.txt module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
tx.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
wif.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00

README.md

btcutil

Build Status Coverage Status ISC License GoDoc

Package btcutil provides bitcoin-specific convenience functions and types. A comprehensive suite of tests is provided to ensure proper functionality. See test_coverage.txt for the gocov coverage report. Alternatively, if you are running a POSIX OS, you can run the cov_report.sh script for a real-time report.

This package was developed for btcd, an alternative full-node implementation of bitcoin which is under active development by Conformal. Although it was primarily written for btcd, this package has intentionally been designed so it can be used as a standalone package for any projects needing the functionality provided.

Installation and Updating

$ go get -u github.com/btcsuite/btcutil

GPG Verification Key

All official release tags are signed by Conformal so users can ensure the code has not been tampered with and is coming from the btcsuite developers. To verify the signature perform the following:

  • Download the public key from the Conformal website at https://opensource.conformal.com/GIT-GPG-KEY-conformal.txt

  • Import the public key into your GPG keyring:

    gpg --import GIT-GPG-KEY-conformal.txt
    
  • Verify the release tag with the following command where TAG_NAME is a placeholder for the specific tag:

    git tag -v TAG_NAME
    

License

Package btcutil is licensed under the copyfree ISC License.