We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c32813 commit 1104360Copy full SHA for 1104360
1 file changed
src/components/@molecules/TransactionDialogManager/stage/TransactionStageModal.tsx
@@ -308,8 +308,8 @@ const getPreTransactionError = ({
308
message: (err as BaseError).shortMessage,
309
type: 'unknown' as const,
310
}
311
- // Ambire smart contract wallet will sometimes throw an error when creating the transaction
312
- // Origin or error is in call eth_createAccessList when `sender is not an EOA`
+ // TODO: Remove this when the following issue is fixed: https://github.com/paradigmxyz/reth/issues/15762
+ // Cause reth throws an error on eth_createAccessList when `sender is not an EOA`
313
if (error.message === 'Transaction creation failed.') {
314
return null
315
0 commit comments