lntest: lower cpfp fee due to new bitcoind max fee restriction

This commit is contained in:
Wilmer Paulino
2019-11-25 12:40:01 -08:00
parent 44fa28b27b
commit 75dbfba4ec

View File

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