aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/feebumper.cpp
diff options
context:
space:
mode:
authorNicolasDorier <[email protected]>2017-04-07 09:38:33 +0000
committerNicolasDorier <[email protected]>2017-04-08 03:50:14 +0000
commitfd44ac1e8b75f6f83cc0fea20ae721de163ff9cc (patch)
tree34e749da0376002b34fb674804291526796e8c2a /src/wallet/feebumper.cpp
parentMerge #10159: [tests] color test results and sort alphabetically (diff)
downloaddiscoin-fd44ac1e8b75f6f83cc0fea20ae721de163ff9cc.tar.xz
discoin-fd44ac1e8b75f6f83cc0fea20ae721de163ff9cc.zip
[Wallet] Rename std::pair<const CWalletTx*, unsigned int> to CInputCoin
Diffstat (limited to 'src/wallet/feebumper.cpp')
-rw-r--r--src/wallet/feebumper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/feebumper.cpp b/src/wallet/feebumper.cpp
index fe3871a91..7201d17b0 100644
--- a/src/wallet/feebumper.cpp
+++ b/src/wallet/feebumper.cpp
@@ -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.