Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-malene committed Dec 16, 2024
1 parent c00f814 commit 70ab79e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go/config/defaults/0-base-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ network:
baseFee: 1000000000 # using geth's initial base fee for EIP-1559 blocks.
minGasPrice: 1000000000 # using geth's initial base fee for EIP-1559 blocks.
paymentAddress: 0xd6C9230053f45F873Cb66D8A02439380a37A4fbF
batchExecutionLimit: 10000000 # a third of an Ethereum block
batchExecutionLimit: 30000000 # same as Ethereum blocks
localExecutionCap: 300000000000 # 300 gwei
l1:
chainId: 1337
Expand Down
2 changes: 1 addition & 1 deletion tools/hardhatdeployer/contract_deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (cd *contractDeployer) run() (string, error) {
deployContractTx := types.LegacyTx{
Nonce: cd.wallet.GetNonceAndIncrement(),
GasPrice: big.NewInt(params.InitialBaseFee),
Gas: uint64(1_000_000),
Gas: uint64(5_000_000),
Data: cd.contractCode,
}

Expand Down

0 comments on commit 70ab79e

Please sign in to comment.