From f6fa986b3326888a27a1161725c3034a7e558862 Mon Sep 17 00:00:00 2001 From: "Victor S." <53380262+1IxI1@users.noreply.github.com> Date: Wed, 15 Jan 2025 10:39:05 +0300 Subject: [PATCH] Fix *DATASIZE* opcode log msg (#1465) Co-authored-by: EmelyanenkoK --- crypto/vm/tonops.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/vm/tonops.cpp b/crypto/vm/tonops.cpp index 6c698df4b..6eebbc6de 100644 --- a/crypto/vm/tonops.cpp +++ b/crypto/vm/tonops.cpp @@ -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();