mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
Fix signed/unsigned comparison warning introduced in c8e29d7ff0.
This commit is contained in:
parent
e8b95239ee
commit
1016dacfac
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ CScript ParseScript(const std::string& s)
|
||||||
|
|
||||||
if (mapOpNames.empty())
|
if (mapOpNames.empty())
|
||||||
{
|
{
|
||||||
for (int op = 0; op <= MAX_OPCODE; op++)
|
for (unsigned int op = 0; op <= MAX_OPCODE; op++)
|
||||||
{
|
{
|
||||||
// Allow OP_RESERVED to get into mapOpNames
|
// Allow OP_RESERVED to get into mapOpNames
|
||||||
if (op < OP_NOP && op != OP_RESERVED)
|
if (op < OP_NOP && op != OP_RESERVED)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue