mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 20:32:35 -03:00
Remove redundant check (!ecc is always true)
This commit is contained in:
parent
55224af6bd
commit
7466991670
1 changed files with 3 additions and 3 deletions
|
@ -682,10 +682,10 @@ static void MutateTx(CMutableTransaction& tx, const std::string& command,
|
||||||
else if (command == "outaddr")
|
else if (command == "outaddr")
|
||||||
MutateTxAddOutAddr(tx, commandVal);
|
MutateTxAddOutAddr(tx, commandVal);
|
||||||
else if (command == "outpubkey") {
|
else if (command == "outpubkey") {
|
||||||
if (!ecc) { ecc.reset(new Secp256k1Init()); }
|
ecc.reset(new Secp256k1Init());
|
||||||
MutateTxAddOutPubKey(tx, commandVal);
|
MutateTxAddOutPubKey(tx, commandVal);
|
||||||
} else if (command == "outmultisig") {
|
} else if (command == "outmultisig") {
|
||||||
if (!ecc) { ecc.reset(new Secp256k1Init()); }
|
ecc.reset(new Secp256k1Init());
|
||||||
MutateTxAddOutMultiSig(tx, commandVal);
|
MutateTxAddOutMultiSig(tx, commandVal);
|
||||||
} else if (command == "outscript")
|
} else if (command == "outscript")
|
||||||
MutateTxAddOutScript(tx, commandVal);
|
MutateTxAddOutScript(tx, commandVal);
|
||||||
|
@ -693,7 +693,7 @@ static void MutateTx(CMutableTransaction& tx, const std::string& command,
|
||||||
MutateTxAddOutData(tx, commandVal);
|
MutateTxAddOutData(tx, commandVal);
|
||||||
|
|
||||||
else if (command == "sign") {
|
else if (command == "sign") {
|
||||||
if (!ecc) { ecc.reset(new Secp256k1Init()); }
|
ecc.reset(new Secp256k1Init());
|
||||||
MutateTxSign(tx, commandVal);
|
MutateTxSign(tx, commandVal);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue