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/coincontroldialog.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/coincontroldialog.cpp')
| -rw-r--r-- | src/qt/coincontroldialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index 601a77fc8..b08de2704 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -509,7 +509,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) nBytes -= 34; // Fee - nPayFee = model->node().getMinimumFee(nBytes, *coinControl(), nullptr /* returned_target */, nullptr /* reason */); + nPayFee = model->wallet().getMinimumFee(nBytes, *coinControl(), nullptr /* returned_target */, nullptr /* reason */); if (nPayAmount > 0) { |