diff --git a/CHANGELOG.md b/CHANGELOG.md index 28e96d487..9bec08714 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Next release +- fix: devnet accounts getting deployed in sequencer mode - fix(rpc): fix BroadcastedDeclareTxn V3 in starknet-types-rpc - fix: oracle need condition - fix(block_production): continue pending block now reexecutes the previous transactions diff --git a/crates/node/src/main.rs b/crates/node/src/main.rs index e7a23a98e..b0958cc46 100644 --- a/crates/node/src/main.rs +++ b/crates/node/src/main.rs @@ -284,7 +284,7 @@ async fn main() -> anyhow::Result<()> { // SERVICES (START) // // ===================================================================== // - if run_cmd.is_sequencer() { + if run_cmd.is_devnet() { service_block_production.setup_devnet().await?; }