Skip to content

Commit

Permalink
allow duplicate send addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
biscuit committed Oct 7, 2019
1 parent cb8fe61 commit a35e05f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#define PEERCOIN_VERSION_MAJOR 0
#define PEERCOIN_VERSION_MINOR 7
#define PEERCOIN_VERSION_REVISION 3
#define PEERCOIN_VERSION_BUILD 0
#define PEERCOIN_VERSION_BUILD 01

// Copyright year (2009-this)
// Todo: update this when changing our copyright comments in the source
Expand Down
4 changes: 2 additions & 2 deletions src/qt/walletmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList<SendCoinsRecipie
total += rcp.amount;
}

if(recipients.size() > setAddress.size())
/* if(recipients.size() > setAddress.size())
{
return DuplicateAddress;
}

*/
// we do not use getBalance() here, because some coins could be locked or coin control could be active
int64 nBalance = 0;
std::vector<COutput> vCoins;
Expand Down

0 comments on commit a35e05f

Please sign in to comment.