diff options
| author | practicalswift <[email protected]> | 2018-03-21 10:54:17 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-03-21 10:54:17 +0100 |
| commit | d27327c79a651fab77e032fa1f00ce4458db959b (patch) | |
| tree | b31605a352ad7ee1a68d5a524b0bb9335e9592cf /src/policy/policy.cpp | |
| parent | Merge #12737: Remove unnecessary NONNEGATIVE_SIGNED (diff) | |
| download | discoin-d27327c79a651fab77e032fa1f00ce4458db959b.tar.xz discoin-d27327c79a651fab77e032fa1f00ce4458db959b.zip | |
Fix typos
Diffstat (limited to 'src/policy/policy.cpp')
| -rw-r--r-- | src/policy/policy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/policy.cpp b/src/policy/policy.cpp index 41f967c98..db1ad4f26 100644 --- a/src/policy/policy.cpp +++ b/src/policy/policy.cpp @@ -261,5 +261,5 @@ int64_t GetVirtualTransactionSize(const CTransaction& tx, int64_t nSigOpCost) int64_t GetVirtualTransactionInputSize(const CTxIn& txin, int64_t nSigOpCost) { - return GetVirtualTransactionSize(GetTransationInputWeight(txin), nSigOpCost); + return GetVirtualTransactionSize(GetTransactionInputWeight(txin), nSigOpCost); } |