We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd18990 commit df1c282Copy full SHA for df1c282
crates/cli/src/main.rs
@@ -279,6 +279,9 @@ async fn main() -> anyhow::Result<()> {
279
if !transactions_to_replay.is_empty() {
280
node.apply_txs(transactions_to_replay, config.max_transactions)
281
.await?;
282
+
283
+ // If we are in replay mode, we don't start the server
284
+ return Ok(());
285
}
286
287
// TODO: Consider moving to `InMemoryNodeInner::init`
0 commit comments