Skip to content

Commit

Permalink
fixed sendmany
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Duffield committed Oct 8, 2014
1 parent 206b577 commit 6c2c1e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 10
#define CLIENT_VERSION_REVISION 14
#define CLIENT_VERSION_BUILD 1
#define CLIENT_VERSION_BUILD 2

// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand Down
2 changes: 1 addition & 1 deletion src/rpcwallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ Value sendmany(const Array& params, bool fHelp)
string strFailReason;

CCoinControl *coinControl=NULL;
AvailableCoinsType act = ONLY_DENOMINATED;
AvailableCoinsType act = ALL_COINS;

bool fCreated = pwalletMain->CreateTransaction(vecSend, wtx, keyChange, nFeeRequired, strFailReason, coinControl, act);
if (!fCreated)
Expand Down

0 comments on commit 6c2c1e4

Please sign in to comment.