File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed
Thirdweb.Tests/Thirdweb.Utils
Thirdweb/Thirdweb.Wallets/InAppWallet/EmbeddedWallet Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -679,14 +679,14 @@ public async Task IsEip155Enforced_ReturnsFalse_WhenChainIs1()
679679 Assert . False ( isEip155Enforced ) ;
680680 }
681681
682- [ Fact ( Timeout = 120000 ) ]
683- public async Task IsEip155Enforced_ReturnsTrue_WhenChainIs842 ( )
684- {
685- var chainId = new BigInteger ( 842 ) ;
686- var isEip155Enforced = await Utils . IsEip155Enforced ( this . Client , chainId ) ;
687-
688- Assert . True ( isEip155Enforced ) ;
689- }
682+ // [Fact(Timeout = 120000)]
683+ // public async Task IsEip155Enforced_ReturnsTrue_WhenChainIs842()
684+ // {
685+ // var chainId = new BigInteger(842);
686+ // var isEip155Enforced = await Utils.IsEip155Enforced(this.Client, chainId);
687+
688+ // Assert.True(isEip155Enforced);
689+ // }
690690
691691 [ Fact ( Timeout = 120000 ) ]
692692 public void ReconstructHttpClient_WithHeaders ( )
Original file line number Diff line number Diff line change @@ -54,6 +54,10 @@ public async Task SignOutAsync()
5454 }
5555
5656 var privateKey = account . PrivateKey ;
57+ if ( privateKey . Length == 64 )
58+ {
59+ privateKey = privateKey . Insert ( 2 , "00" ) ;
60+ }
5761 var utf8WithoutBom = new System . Text . UTF8Encoding ( encoderShouldEmitUTF8Identifier : true ) ;
5862 var privateKeyBytes = utf8WithoutBom . GetBytes ( privateKey ) ;
5963
You can’t perform that action at this time.
0 commit comments