Skip to content

Commit

Permalink
Fix *DATASIZE* opcode log msg (#1465)
Browse files Browse the repository at this point in the history
Co-authored-by: EmelyanenkoK <[email protected]>
  • Loading branch information
1IxI1 and EmelyanenkoK authored Jan 15, 2025
1 parent 652f4f0 commit f6fa986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/vm/tonops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ void register_ton_crypto_ops(OpcodeTable& cp0) {
}

int exec_compute_data_size(VmState* st, int mode) {
VM_LOG(st) << (mode & 2 ? 'S' : 'C') << "DATASIZE" << (mode & 1 ? "Q" : "");
VM_LOG(st) << "execute " << (mode & 2 ? 'S' : 'C') << "DATASIZE" << (mode & 1 ? "Q" : "");
Stack& stack = st->get_stack();
stack.check_underflow(2);
auto bound = stack.pop_int();
Expand Down

0 comments on commit f6fa986

Please sign in to comment.