diff options
| author | Pieter Wuille <[email protected]> | 2016-11-30 14:50:20 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-12-02 18:28:22 -0800 |
| commit | 42fd8dee302fec55ba0970e2f1378edc2797e4ff (patch) | |
| tree | 0b2b5cb6be13f876f5b0fc6060da144213cda6bc /src/core_read.cpp | |
| parent | Make CWalletTx store a CTransactionRef instead of inheriting (diff) | |
| download | discoin-42fd8dee302fec55ba0970e2f1378edc2797e4ff.tar.xz discoin-42fd8dee302fec55ba0970e2f1378edc2797e4ff.zip | |
Make DecodeHexTx return a CMutableTransaction
Diffstat (limited to 'src/core_read.cpp')
| -rw-r--r-- | src/core_read.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core_read.cpp b/src/core_read.cpp index 7cfda6dd6..b6d028545 100644 --- a/src/core_read.cpp +++ b/src/core_read.cpp @@ -90,7 +90,7 @@ CScript ParseScript(const std::string& s) return result; } -bool DecodeHexTx(CTransaction& tx, const std::string& strHexTx, bool fTryNoWitness) +bool DecodeHexTx(CMutableTransaction& tx, const std::string& strHexTx, bool fTryNoWitness) { if (!IsHex(strHexTx)) return false; |