diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-11-30 14:50:20 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-12-02 18:28:22 -0800 |
commit | 42fd8dee302fec55ba0970e2f1378edc2797e4ff (patch) | |
tree | 0b2b5cb6be13f876f5b0fc6060da144213cda6bc /src/core_read.cpp | |
parent | c3f5673a6304e3ea9fa56fff66b6ea1cb73cc98f (diff) |
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 7cfda6dd6d..b6d0285459 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; |