Skip to content

Commit a82303f

Browse files
authoredMar 26, 2025
accounts/abi: include access-list in gas estimation (#31394)
Simple bugfix to include the access-list in the gas-estimation step of the ABI bindings code.
1 parent a775e68 commit a82303f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed
 

‎accounts/abi/bind/v2/base.go

+8-7
Original file line numberDiff line numberDiff line change
@@ -383,13 +383,14 @@ func (c *BoundContract) estimateGasLimit(opts *TransactOpts, contract *common.Ad
383383
}
384384
}
385385
msg := ethereum.CallMsg{
386-
From: opts.From,
387-
To: contract,
388-
GasPrice: gasPrice,
389-
GasTipCap: gasTipCap,
390-
GasFeeCap: gasFeeCap,
391-
Value: value,
392-
Data: input,
386+
From: opts.From,
387+
To: contract,
388+
GasPrice: gasPrice,
389+
GasTipCap: gasTipCap,
390+
GasFeeCap: gasFeeCap,
391+
Value: value,
392+
Data: input,
393+
AccessList: opts.AccessList,
393394
}
394395
return c.transactor.EstimateGas(ensureContext(opts.Context), msg)
395396
}

0 commit comments

Comments
 (0)
Please sign in to comment.