diff options
author | Daniel Kraft <d@domob.eu> | 2014-07-07 09:34:43 +0200 |
---|---|---|
committer | Daniel Kraft <d@domob.eu> | 2014-07-07 09:41:33 +0200 |
commit | e832ab7754732af7fd46ad7f16eef973e238c357 (patch) | |
tree | b3d38ef8d312cf2404f2952091a104b3de0534de /src/wallet.h | |
parent | 4ed2315e86621cf547fbc3649fcbe39c793a7eb3 (diff) |
Rename SendMoneyToDestination to SendMoney.
Get rid of SendMoney and replace it by the functionality of
SendMoneyToDestination. This cleans up the code, since only
SendMoneyToDestination was actually used (SendMoney internally from this
routine).
Diffstat (limited to 'src/wallet.h')
-rw-r--r-- | src/wallet.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wallet.h b/src/wallet.h index a5162bb838..62f13e4630 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -265,8 +265,7 @@ public: bool CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, std::string& strFailReason, const CCoinControl *coinControl = NULL); bool CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey); - std::string SendMoney(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew); - std::string SendMoneyToDestination(const CTxDestination &address, int64_t nValue, CWalletTx& wtxNew); + std::string SendMoney(const CTxDestination &address, int64_t nValue, CWalletTx& wtxNew); static CFeeRate minTxFee; static int64_t GetMinimumFee(unsigned int nTxBytes, unsigned int nConfirmTarget, const CTxMemPool& pool); |