Skip to content

Commit

Permalink
Merge branch 'master' into test_batch_poster_dangerous_config
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoximenes authored Jun 13, 2024
2 parents 337bf43 + 5673881 commit 76d5c0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solgen/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func main() {
}
root := filepath.Dir(filename)
parent := filepath.Dir(root)
filePaths, err := filepath.Glob(filepath.Join(parent, "contracts", "build", "contracts", "src", "*", "*", "*.json"))
filePaths, err := filepath.Glob(filepath.Join(parent, "contracts", "build", "contracts", "src", "*", "*.sol", "*.json"))
if err != nil {
log.Fatal(err)
}
Expand Down Expand Up @@ -105,7 +105,7 @@ func main() {
modInfo.addArtifact(artifact)
}

yulFilePaths, err := filepath.Glob(filepath.Join(parent, "contracts", "out", "yul", "*", "*.json"))
yulFilePaths, err := filepath.Glob(filepath.Join(parent, "contracts", "out", "*", "*.yul", "*.json"))
if err != nil {
log.Fatal(err)
}
Expand Down
1 change: 1 addition & 0 deletions staker/validatorwallet/contract.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ func (v *Contract) estimateGas(ctx context.Context, value *big.Int, data []byte)
if err != nil {
return 0, fmt.Errorf("getting suggested gas tip cap: %w", err)
}
gasFeeCap.Add(gasFeeCap, gasTipCap)
g, err := v.l1Reader.Client().EstimateGas(
ctx,
ethereum.CallMsg{
Expand Down

0 comments on commit 76d5c0a

Please sign in to comment.