Skip to content

Commit

Permalink
Merge pull request #301 from graft-project/fix/supernode_send_issue
Browse files Browse the repository at this point in the history
Fixed mixin definition for supernode
  • Loading branch information
mbg033 authored May 30, 2019
2 parents 8037a8a + d546314 commit 743e9ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/supernode/baseclientproxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ bool supernode::BaseClientProxy::GetTransferFee(const supernode::rpc_command::GE

try
{
uint64_t mixin = wal->default_mixin() > 0 ? wal->default_mixin() : 4;
uint64_t mixin = wal->adjust_mixin(6);
uint64_t unlock_time = 0;
uint64_t priority = 0;
uint32_t subaddr_count = 0;
Expand Down Expand Up @@ -413,7 +413,7 @@ int supernode::BaseClientProxy::create_transfer(tools::GraftWallet *wallet, cons

try
{
uint64_t mixin = wallet->default_mixin() > 0 ? wallet->default_mixin() : 6;
uint64_t mixin = wallet->adjust_mixin(6);
uint64_t unlock_time = 0;
uint64_t priority = 0;
bool do_not_relay = false;
Expand Down

0 comments on commit 743e9ce

Please sign in to comment.