diff options
| author | MarcoFalke <[email protected]> | 2020-06-29 18:29:26 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-07-01 17:24:49 -0400 |
| commit | fa575f34614f189d5b083d7efa6925d968f4df11 (patch) | |
| tree | 59f571b00642128784487aa33a50d652628a3532 /src/wallet | |
| parent | script: Fix boost/C++17 compile failure (diff) | |
| download | discoin-fa575f34614f189d5b083d7efa6925d968f4df11.tar.xz discoin-fa575f34614f189d5b083d7efa6925d968f4df11.zip | |
wallet: Replace boost::none with nullopt
Diffstat (limited to 'src/wallet')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 00927a2e5..1db04b721 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -223,7 +223,7 @@ static void SetFeeEstimateMode(const CWallet* pwallet, CCoinControl& cc, const U cc.m_feerate = CFeeRate(fee_rate); // default RBF to true for explicit fee rate modes - if (cc.m_signal_bip125_rbf == boost::none) cc.m_signal_bip125_rbf = true; + if (cc.m_signal_bip125_rbf == nullopt) cc.m_signal_bip125_rbf = true; } else if (!estimate_param.isNull()) { cc.m_confirm_target = ParseConfirmTarget(estimate_param, pwallet->chain().estimateMaxBlocks()); } |