mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Fix incorrect gas consumption with verbosity > 3 (#1077)
This commit is contained in:
parent
1b9372804f
commit
a5521a60aa
1 changed files with 6 additions and 0 deletions
|
@ -441,10 +441,16 @@ int VmState::step() {
|
||||||
if (log.log_mask & vm::VmLog::DumpStackVerbose) {
|
if (log.log_mask & vm::VmLog::DumpStackVerbose) {
|
||||||
mode += 4;
|
mode += 4;
|
||||||
}
|
}
|
||||||
|
std::unique_ptr<VmStateInterface> tmp_ctx;
|
||||||
|
// install temporary dummy vm state interface to prevent charging for cell load operations during dump
|
||||||
|
VmStateInterface::Guard guard(tmp_ctx.get());
|
||||||
stack->dump(ss, mode);
|
stack->dump(ss, mode);
|
||||||
VM_LOG(this) << "stack:" << ss.str();
|
VM_LOG(this) << "stack:" << ss.str();
|
||||||
}
|
}
|
||||||
if (stack_trace) {
|
if (stack_trace) {
|
||||||
|
std::unique_ptr<VmStateInterface> tmp_ctx;
|
||||||
|
// install temporary dummy vm state interface to prevent charging for cell load operations during dump
|
||||||
|
VmStateInterface::Guard guard(tmp_ctx.get());
|
||||||
stack->dump(std::cerr, 3);
|
stack->dump(std::cerr, 3);
|
||||||
}
|
}
|
||||||
++steps;
|
++steps;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue