Skip to content

Commit 2d7d927

Browse files
committed
update delegate util
1 parent 5b490b6 commit 2d7d927

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Thirdweb/Thirdweb.Utils/Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1332,6 +1332,6 @@ public static async Task<bool> IsDelegatedAccount(ThirdwebClient client, BigInte
13321332
{
13331333
var rpc = ThirdwebRPC.GetRpcInstance(client, chainId);
13341334
var code = await rpc.SendRequestAsync<string>("eth_getCode", address, "latest");
1335-
return !code.Equals($"0xef0100{Constants.MINIMAL_ACCOUNT_7702[2..]}", StringComparison.OrdinalIgnoreCase);
1335+
return code.Equals($"0xef0100{Constants.MINIMAL_ACCOUNT_7702[2..]}", StringComparison.OrdinalIgnoreCase);
13361336
}
13371337
}

0 commit comments

Comments
 (0)