diff options
| author | practicalswift <[email protected]> | 2017-07-21 18:42:22 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-10-02 15:47:43 +0200 |
| commit | 74669916709e5429990df120c6ba84ac60791b30 (patch) | |
| tree | 60016822e6564ac6be586035607329782f6b79f6 /src/bitcoin-tx.cpp | |
| parent | Remove redundant NULL checks after new (diff) | |
| download | discoin-74669916709e5429990df120c6ba84ac60791b30.tar.xz discoin-74669916709e5429990df120c6ba84ac60791b30.zip | |
Remove redundant check (!ecc is always true)
Diffstat (limited to 'src/bitcoin-tx.cpp')
| -rw-r--r-- | src/bitcoin-tx.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp index d8d7934bf..5a0ae11f0 100644 --- a/src/bitcoin-tx.cpp +++ b/src/bitcoin-tx.cpp @@ -682,10 +682,10 @@ static void MutateTx(CMutableTransaction& tx, const std::string& command, else if (command == "outaddr") MutateTxAddOutAddr(tx, commandVal); else if (command == "outpubkey") { - if (!ecc) { ecc.reset(new Secp256k1Init()); } + ecc.reset(new Secp256k1Init()); MutateTxAddOutPubKey(tx, commandVal); } else if (command == "outmultisig") { - if (!ecc) { ecc.reset(new Secp256k1Init()); } + ecc.reset(new Secp256k1Init()); MutateTxAddOutMultiSig(tx, commandVal); } else if (command == "outscript") MutateTxAddOutScript(tx, commandVal); @@ -693,7 +693,7 @@ static void MutateTx(CMutableTransaction& tx, const std::string& command, MutateTxAddOutData(tx, commandVal); else if (command == "sign") { - if (!ecc) { ecc.reset(new Secp256k1Init()); } + ecc.reset(new Secp256k1Init()); MutateTxSign(tx, commandVal); } |