We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a54d9d1 commit 3907431Copy full SHA for 3907431
src/lib/simulation/storage.ts
@@ -234,6 +234,11 @@ export const fetchSimulationAndUpdate = async (args: TransactionArgs) => {
234
response = result[1];
235
}
236
237
+ // Just in case the bypass check triggers, skip the simulation on verified websites
238
+ if (response.simulation?.scanResult.verified && args.bypassed) {
239
+ return skipSimulation(args.id);
240
+ }
241
+
242
if (response.type === ResponseType.Error) {
243
if (response?.error?.message === 'invalid chain id') {
244
// This will likely be a no-op but we want to handle it anyway.
0 commit comments