aboutsummaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2010-12-16 15:48:04 -0500
committerGavin Andresen <gavinandresen@gmail.com>2011-03-13 17:11:49 -0400
commitb931ed8563eff9021ce3b1a05d8e6bc21117dc71 (patch)
tree7f9a4ce236cf5aafdd4c181ba04d09573b95a9f4 /main.h
parentf4f2987273a92c81a2e5c8b137010841e95687d0 (diff)
downloadbitcoin-b931ed8563eff9021ce3b1a05d8e6bc21117dc71.tar.xz
sendmany RPC command, to send to multiple recipients in one transaction.
Diffstat (limited to 'main.h')
-rw-r--r--main.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.h b/main.h
index 668d7f98b3..e9d0c00310 100644
--- a/main.h
+++ b/main.h
@@ -77,6 +77,7 @@ bool ProcessMessages(CNode* pfrom);
bool ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv);
bool SendMessages(CNode* pto, bool fSendTrickle);
int64 GetBalance();
+bool CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet);
bool CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet);
bool CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey);
bool BroadcastTransaction(CWalletTx& wtxNew);