Merge pull request #3759 from wpaulino/travis-bitcoind-0.19.1

build: bump travis bitcoind version to 0.19.0.1
This commit is contained in:
Olaoluwa Osuntokun 2019-11-25 17:25:18 -06:00 committed by GitHub
commit be4a1a2704
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

@ -1,7 +1,7 @@
language: go language: go
cache: cache:
directories: directories:
- ~/bitcoin/bitcoin-0.18.1/bin - ~/bitcoin/bitcoin-0.19.0.1/bin
- $GOCACHE - $GOCACHE
- $GOPATH/pkg/mod - $GOPATH/pkg/mod
- $GOPATH/src/github.com/btcsuite - $GOPATH/src/github.com/btcsuite

@ -94,7 +94,7 @@ func testCPFP(net *lntest.NetworkHarness, t *harnessTest) {
} }
bumpFeeReq := &walletrpc.BumpFeeRequest{ bumpFeeReq := &walletrpc.BumpFeeRequest{
Outpoint: op, Outpoint: op,
SatPerByte: uint32(sweep.DefaultMaxFeeRate.FeePerKVByte() / 1000), SatPerByte: uint32(sweep.DefaultMaxFeeRate.FeePerKVByte() / 2000),
} }
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout) ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
_, err = net.Bob.WalletKitClient.BumpFee(ctxt, bumpFeeReq) _, err = net.Bob.WalletKitClient.BumpFee(ctxt, bumpFeeReq)

@ -2,7 +2,7 @@
set -ev set -ev
export BITCOIND_VERSION=0.18.1 export BITCOIND_VERSION=0.19.0.1
if sudo cp ~/bitcoin/bitcoin-$BITCOIND_VERSION/bin/bitcoind /usr/local/bin/bitcoind if sudo cp ~/bitcoin/bitcoin-$BITCOIND_VERSION/bin/bitcoind /usr/local/bin/bitcoind
then then