Minimal changes to comply with explicit CMutableTransaction -> CTranaction conversion.

This commit makes the minimal changes necessary to fix compilation once CTransaction(const CMutableTransaction &tx) is made explicit. In each case an explicit call `CTransaction(...)` was added. Shouldn't affect behaviour or performance.
This commit is contained in:
lucash-dev
2018-12-09 22:03:07 -08:00
parent 27f5a295d7
commit faf29dd019
6 changed files with 10 additions and 10 deletions

View File

@@ -818,7 +818,7 @@ static int CommandLineRawTx(int argc, char* argv[])
MutateTx(tx, key, value);
}
OutputTx(tx);
OutputTx(CTransaction(tx));
}
catch (const std::exception& e) {
strPrint = std::string("error: ") + e.what();