Skip to content

Commit

Permalink
Merge pull request #75 from gcash/asert
Browse files Browse the repository at this point in the history
[Feature] Update to the latest neutrino lib for ASERT support
  • Loading branch information
zquestz authored May 24, 2021
2 parents 61bcca2 + 14ca25b commit 4837f97
Show file tree
Hide file tree
Showing 4 changed files with 546 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ APPNAME = bchwallet
OUTDIR = pkg

# Allow user to override cross compilation scope
OSARCH ?= darwin/386 darwin/amd64 dragonfly/amd64 freebsd/386 freebsd/amd64 freebsd/arm linux/386 linux/amd64 linux/arm netbsd/386 netbsd/amd64 netbsd/arm openbsd/386 openbsd/amd64 windows/386 windows/amd64
DIRS ?= darwin_386 darwin_amd64 dragonfly_amd64 freebsd_386 freebsd_amd64 freebsd_arm linux_386 linux_amd64 linux_arm netbsd_386 netbsd_amd64 netbsd_arm openbsd_386 openbsd_amd64 windows_386 windows_amd64
OSARCH ?= darwin/amd64 dragonfly/amd64 freebsd/386 freebsd/amd64 freebsd/arm linux/386 linux/amd64 linux/arm netbsd/386 netbsd/amd64 netbsd/arm openbsd/386 openbsd/amd64 windows/386 windows/amd64
DIRS ?= darwin_amd64 dragonfly_amd64 freebsd_386 freebsd_amd64 freebsd_arm linux_386 linux_amd64 linux_arm netbsd_386 netbsd_amd64 netbsd_arm openbsd_386 openbsd_amd64 windows_386 windows_amd64

all:
go build .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ https://github.com/gcash/bchwallet/releases

Building or updating from source requires the following build dependencies:

- **Go 1.11.1 and greater**
- **Go 1.16.4 and greater**

Installation instructions can be found here: http://golang.org/doc/install.
It is recommended to add `$GOPATH/bin` to your `PATH` at this point.
Expand Down
13 changes: 7 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,25 @@ require (
github.com/btcsuite/golangcrypto v0.0.0-20150304025918-53f62d9b43e8
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
github.com/davecgh/go-spew v1.1.1
github.com/gcash/bchd v0.18.1-0.20210522092846-10614544cf00
github.com/gcash/bchd v0.18.1
github.com/gcash/bchlog v0.0.0-20180913005452-b4f036f92fa6
github.com/gcash/bchutil v0.0.0-20210113190856-6ea28dff4000
github.com/gcash/bchwallet/walletdb v0.0.0-20210524032111-4a6e424b2c66
github.com/gcash/neutrino v0.0.0-20210524024247-f7bf0435d155
github.com/gcash/bchwallet/walletdb v0.0.0-20210524044131-61bcca2ae6f9
github.com/gcash/neutrino v0.0.0-20210524105223-4cec86bbd8a4
github.com/golang/protobuf v1.5.2
github.com/improbable-eng/grpc-web v0.14.0 // indirect
github.com/jarcoal/httpmock v1.0.8
github.com/jessevdk/go-flags v1.5.0
github.com/jrick/logrotate v1.0.0
github.com/klauspost/compress v1.12.2 // indirect
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf
github.com/miekg/dns v1.1.42
github.com/simpleledgerinc/goslp v0.0.0-20210423125905-3c2e5f2ef33f // indirect
github.com/tyler-smith/go-bip39 v1.1.0
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
golang.org/x/net v0.0.0-20210521195947-fe42d452be8f
golang.org/x/sys v0.0.0-20210521203332-0cec03c779c1 // indirect
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect
google.golang.org/genproto v0.0.0-20210521181308-5ccab8a35a9a // indirect
google.golang.org/grpc v1.38.0
nhooyr.io/websocket v1.8.7 // indirect
)

replace github.com/gcash/bchwallet/walletdb => ./walletdb
Loading

0 comments on commit 4837f97

Please sign in to comment.