Skip to content

Commit

Permalink
fix(cli): Failed to get EIP-1559 fee
Browse files Browse the repository at this point in the history
Fixing networks that do not support EIP-1559 fees
  • Loading branch information
aLIEzsss4 authored Dec 21, 2023
1 parent 6672838 commit 3dc0ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/utils/utils/postDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function postDeploy(
if (existsSync(postDeployPath)) {
console.log(chalk.blue(`Executing post deploy script at ${postDeployPath}`));
await forge(
["script", postDeployScript, "--sig", "run(address)", worldAddress, "--broadcast", "--rpc-url", rpc, "-vvv"],
["script", postDeployScript, "--sig", "run(address)", worldAddress, "--broadcast", "--legacy", "--rpc-url", rpc, "-vvv"],
{
profile: profile,
}
Expand Down

0 comments on commit 3dc0ec4

Please sign in to comment.