Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions fendermint/vm/interpreter/src/fvm/state/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,7 @@ where
params: FvmStateParams,
) -> anyhow::Result<Self> {
let mut nc = NetworkConfig::new(params.network_version);
if tracing::enabled!(Level::DEBUG) {
nc.enable_actor_debugging();
}
nc.enable_actor_debugging(); // Warning! Changing this on a live network will lead to non-determinism and consensus failures.
nc.chain_id = ChainID::from(params.chain_id);

// TODO: Configure:
Expand Down
Loading