diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2010-12-16 15:48:04 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-03-13 17:11:49 -0400 |
commit | b931ed8563eff9021ce3b1a05d8e6bc21117dc71 (patch) | |
tree | 7f9a4ce236cf5aafdd4c181ba04d09573b95a9f4 /main.h | |
parent | f4f2987273a92c81a2e5c8b137010841e95687d0 (diff) |
sendmany RPC command, to send to multiple recipients in one transaction.
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |