diff options
| author | MarcoFalke <[email protected]> | 2018-04-07 12:12:46 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-04-23 10:49:21 -0400 |
| commit | fac0db0ff8e72ca30a0da8a64fc1d115dd2d6f8c (patch) | |
| tree | d12d25bb207858129003ef6c33956f6c8a3fcdcb /src/qt/walletmodel.cpp | |
| parent | Merge #12510: test: Add rpc_bind test to default-run tests (diff) | |
| download | discoin-fac0db0ff8e72ca30a0da8a64fc1d115dd2d6f8c.tar.xz discoin-fac0db0ff8e72ca30a0da8a64fc1d115dd2d6f8c.zip | |
wallet: Make fee settings non-static members
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 00b98901c..8f30a2a87 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -486,7 +486,7 @@ bool WalletModel::saveReceiveRequest(const std::string &sAddress, const int64_t bool WalletModel::bumpFee(uint256 hash) { CCoinControl coin_control; - coin_control.signalRbf = true; + coin_control.m_signal_bip125_rbf = true; std::vector<std::string> errors; CAmount old_fee; CAmount new_fee; |