Skip to content

Commit fa575f3

Browse files
author
MarcoFalke
committed
wallet: Replace boost::none with nullopt
1 parent fac7bdb commit fa575f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ static void SetFeeEstimateMode(const CWallet* pwallet, CCoinControl& cc, const U
223223
cc.m_feerate = CFeeRate(fee_rate);
224224

225225
// default RBF to true for explicit fee rate modes
226-
if (cc.m_signal_bip125_rbf == boost::none) cc.m_signal_bip125_rbf = true;
226+
if (cc.m_signal_bip125_rbf == nullopt) cc.m_signal_bip125_rbf = true;
227227
} else if (!estimate_param.isNull()) {
228228
cc.m_confirm_target = ParseConfirmTarget(estimate_param, pwallet->chain().estimateMaxBlocks());
229229
}

0 commit comments

Comments
 (0)