Skip to content

Commit

Permalink
Update wallet_rpc_server.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Stellite authored Mar 19, 2018
1 parent 8b76d61 commit 6028aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/wallet_rpc_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ namespace tools
MWARNING("Requested ring size " << (mixin + 1) << " too low for hard fork 6, using 5");
mixin = 4;
}
else if (mixin < 2 && m_wallet->use_fork_rules(2, 10)) {
else if (mixin < 2 && m_wallet->use_fork_rules(6, 10)) {
MWARNING("Requested ring size " << (mixin + 1) << " too low for hard fork 2, using 3");
mixin = 2;
}
Expand Down

0 comments on commit 6028aa0

Please sign in to comment.