mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
script: Disallow silent bool -> CScript conversion
This commit is contained in:
parent
4d26312c17
commit
88884ee8d8
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ public:
|
|||
return ret;
|
||||
}
|
||||
|
||||
CScript(int64_t b) { operator<<(b); }
|
||||
explicit CScript(int64_t b) { operator<<(b); }
|
||||
|
||||
explicit CScript(opcodetype b) { operator<<(b); }
|
||||
explicit CScript(const CScriptNum& b) { operator<<(b); }
|
||||
|
|
Loading…
Add table
Reference in a new issue