[Wallet] Rename std::pair<const CWalletTx*, unsigned int> to CInputCoin

This commit is contained in:
NicolasDorier
2017-04-07 09:38:33 +00:00
parent df1ca9e93a
commit fd44ac1e8b
5 changed files with 16 additions and 16 deletions

View File

@@ -23,7 +23,7 @@
int64_t CalculateMaximumSignedTxSize(const CTransaction &tx, const CWallet *pWallet)
{
CMutableTransaction txNew(tx);
std::vector<std::pair<const CWalletTx *, unsigned int>> vCoins;
std::vector<CInputCoin> vCoins;
// Look up the inputs. We should have already checked that this transaction
// IsAllFromMe(ISMINE_SPENDABLE), so every input should already be in our
// wallet, with a valid index into the vout array.