mirror of
https://github.com/monero-project/monero.git
synced 2025-08-23 06:55:04 -04:00
Bump ring size to 16 for v15 & remove set default in wallet cli
This commit is contained in:
parent
53bf62d114
commit
5d388eb74d
9 changed files with 38 additions and 87 deletions
|
@ -7380,6 +7380,8 @@ int wallet2::get_fee_algorithm()
|
|||
//------------------------------------------------------------------------------------------------------------------------------
|
||||
uint64_t wallet2::get_min_ring_size()
|
||||
{
|
||||
if (use_fork_rules(HF_VERSION_MIN_MIXIN_15, 0))
|
||||
return 16;
|
||||
if (use_fork_rules(8, 10))
|
||||
return 11;
|
||||
if (use_fork_rules(7, 10))
|
||||
|
@ -7393,6 +7395,8 @@ uint64_t wallet2::get_min_ring_size()
|
|||
//------------------------------------------------------------------------------------------------------------------------------
|
||||
uint64_t wallet2::get_max_ring_size()
|
||||
{
|
||||
if (use_fork_rules(HF_VERSION_MIN_MIXIN_15, 0))
|
||||
return 16;
|
||||
if (use_fork_rules(8, 10))
|
||||
return 11;
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue