Skip to content

Commit

Permalink
feat: change block time to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
dhvanipa committed Mar 21, 2024
1 parent 84c3ad7 commit 8af5c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/dev-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const commandModule: CommandModule<typeof devOptions, InferredOptionTypes<typeof
const userHomeDir = homedir();
rmSync(path.join(userHomeDir, ".foundry", "anvil", "tmp"), { recursive: true, force: true });

const anvilArgs = ["--block-time", "1", "--block-base-fee-per-gas", "0", "--gas-limit", "100000000"];
const anvilArgs = ["--block-time", "2", "--block-base-fee-per-gas", "0", "--gas-limit", "100000000"];
anvil(anvilArgs);
rpc = "http://127.0.0.1:8545";
}
Expand Down

0 comments on commit 8af5c9f

Please sign in to comment.