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()
679
679
Assert . False ( isEip155Enforced ) ;
680
680
}
681
681
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
+ // }
690
690
691
691
[ Fact ( Timeout = 120000 ) ]
692
692
public void ReconstructHttpClient_WithHeaders ( )
Original file line number Diff line number Diff line change @@ -54,6 +54,10 @@ public async Task SignOutAsync()
54
54
}
55
55
56
56
var privateKey = account . PrivateKey ;
57
+ if ( privateKey . Length == 64 )
58
+ {
59
+ privateKey = privateKey . Insert ( 2 , "00" ) ;
60
+ }
57
61
var utf8WithoutBom = new System . Text . UTF8Encoding ( encoderShouldEmitUTF8Identifier : true ) ;
58
62
var privateKeyBytes = utf8WithoutBom . GetBytes ( privateKey ) ;
59
63
You can’t perform that action at this time.
0 commit comments