Skip to content

Commit 5033474

Browse files
Aniket-Enggyann300
authored andcommitted
fix ui linting
1 parent 5ce6ea8 commit 5033474

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libs/remix-lib/src/execution/txRunnerWeb3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export class TxRunnerWeb3 {
207207
if (tx.fromSmartAccount && tx.value === "0" &&
208208
err && err.message && err.message.includes('missing revert data')
209209
) {
210-
// Do not show dialog for 'insufficient funds got transfer' & 'gas required exceeds allowance (0)'
210+
// Do not show dialog for 'missing revert data'
211211
// tx fees can be managed by paymaster in case of smart account tx
212212
// @todo If paymaster is used, check if balance/credits are available
213213
err = null

libs/remix-ui/run-tab/src/lib/actions/account.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ export const createNewBlockchainAccount = async (plugin: RunTab, dispatch: React
110110
}
111111

112112
export const createSmartAccount = async (plugin: RunTab, dispatch: React.Dispatch<any>) => {
113-
113+
114114
const { chainId } = plugin.REACT_API
115115
const chain = chains[aaSupportedNetworks[chainId].name]
116116
const PUBLIC_NODE_URL = aaSupportedNetworks[chainId].publicNodeUrl
117117
const BUNDLER_URL = getPimlicoBundlerURL(chainId)
118-
118+
119119
const safeAddresses: string[] = Object.keys(plugin.REACT_API.smartAccounts)
120120
let salt
121121

0 commit comments

Comments
 (0)