Skip to content

Commit 6cd6685

Browse files
committed
update
1 parent 6d89f37 commit 6cd6685

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aptos-move/aptos-vm/src/aptos_vm.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ impl AptosVM {
16781678
let args = serialize_values(
16791679
&block_metadata.get_prologue_move_args(account_config::reserved_vm_address()),
16801680
);
1681-
debug!(epoch = block_metadata.epoch, round = block_metadata.round, "Running BlockMetadata txn.");
1681+
debug!(epoch = block_metadata.epoch(), round = block_metadata.round(), "Running BlockMetadata txn.");
16821682
session
16831683
.execute_function_bypass_visibility(
16841684
&BLOCK_MODULE,
@@ -1691,7 +1691,7 @@ impl AptosVM {
16911691
.or_else(|e| {
16921692
expect_only_successful_execution(e, BLOCK_PROLOGUE.as_str(), log_context)
16931693
})?;
1694-
debug!(epoch = block_metadata.epoch, round = block_metadata.round, "BlockMetadata txn finished.");
1694+
debug!(epoch = block_metadata.epoch(), round = block_metadata.round(), "BlockMetadata txn finished.");
16951695
SYSTEM_TRANSACTIONS_EXECUTED.inc();
16961696

16971697
let output = get_transaction_output(
@@ -1700,7 +1700,7 @@ impl AptosVM {
17001700
ExecutionStatus::Success,
17011701
&get_or_vm_startup_failure(&self.storage_gas_params, log_context)?.change_set_configs,
17021702
)?;
1703-
debug!(epoch = block_metadata.epoch, round = block_metadata.round, "BlockMetadata txn result ok.");
1703+
debug!(epoch = block_metadata.epoch(), round = block_metadata.round(), "BlockMetadata txn result ok.");
17041704
Ok((VMStatus::Executed, output))
17051705
}
17061706

0 commit comments

Comments
 (0)