LibOpEqualToNP

Git Source

Opcode to return 1 if the first item on the stack is equal to the second item on the stack, else 0.

Functions

integrity

function integrity(IntegrityCheckStateNP memory, Operand) internal pure returns (uint256, uint256);

run

EQ EQ is 1 if the first item is equal to the second item, else 0.

function run(InterpreterStateNP memory, Operand, Pointer stackTop) internal pure returns (Pointer);

referenceFn

Gas intensive reference implementation of EQ for testing.

function referenceFn(InterpreterStateNP memory, Operand, uint256[] memory inputs)
    internal
    pure
    returns (uint256[] memory outputs);