[Qt] Change RBF checkbox to reflect -walletrbf setting

Before this commit, the checkbox would always start off unchecked. After this
commit it will respect the -walletrbf setting (which is currently false by
default).
This commit is contained in:
Russell Yanofsky
2017-01-19 18:19:39 -05:00
parent 838a58e7ca
commit c4e4792c53
3 changed files with 8 additions and 0 deletions

View File

@@ -706,3 +706,8 @@ int WalletModel::getDefaultConfirmTarget() const
{
return nTxConfirmTarget;
}
bool WalletModel::getDefaultWalletRbf() const
{
return fWalletRbf;
}