diff options
| author | Andrew Chow <[email protected]> | 2018-03-05 16:37:24 -0500 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2018-03-09 21:15:36 -0500 |
| commit | 12ec29d3bb0d46c61712210fe9bb96a0d543204a (patch) | |
| tree | 5570d616050510641d8f55d894da60048841e6cf /src/policy | |
| parent | Merge #9598: Improve readability by removing redundant casts to same type (on... (diff) | |
| download | discoin-12ec29d3bb0d46c61712210fe9bb96a0d543204a.tar.xz discoin-12ec29d3bb0d46c61712210fe9bb96a0d543204a.zip | |
Calculate and store the number of bytes required to spend an input
Diffstat (limited to 'src/policy')
| -rw-r--r-- | src/policy/policy.cpp | 5 | ||||
| -rw-r--r-- | src/policy/policy.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/policy/policy.cpp b/src/policy/policy.cpp index bff58932b..41f967c98 100644 --- a/src/policy/policy.cpp +++ b/src/policy/policy.cpp @@ -258,3 +258,8 @@ int64_t GetVirtualTransactionSize(const CTransaction& tx, int64_t nSigOpCost) { return GetVirtualTransactionSize(GetTransactionWeight(tx), nSigOpCost); } + +int64_t GetVirtualTransactionInputSize(const CTxIn& txin, int64_t nSigOpCost) +{ + return GetVirtualTransactionSize(GetTransationInputWeight(txin), nSigOpCost); +} diff --git a/src/policy/policy.h b/src/policy/policy.h index 3d96406bb..e4eda4b63 100644 --- a/src/policy/policy.h +++ b/src/policy/policy.h @@ -102,5 +102,6 @@ extern unsigned int nBytesPerSigOp; /** Compute the virtual transaction size (weight reinterpreted as bytes). */ int64_t GetVirtualTransactionSize(int64_t nWeight, int64_t nSigOpCost); int64_t GetVirtualTransactionSize(const CTransaction& tx, int64_t nSigOpCost = 0); +int64_t GetVirtualTransactionInputSize(const CTxIn& tx, int64_t nSigOpCost = 0); #endif // BITCOIN_POLICY_POLICY_H |