Skip to content

Commit a701896

Browse files
committed
Remove deprecated Celo chain test
1 parent 2035299 commit a701896

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

Thirdweb.Tests/Thirdweb.Utils/Thirdweb.Utils.Tests.cs

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -743,28 +743,6 @@ public async Task FetchGasFees_80002()
743743
Assert.True(maxFee > maxPrio);
744744
}
745745

746-
[Fact(Timeout = 120000)]
747-
public async Task FetchGasFees_Celo()
748-
{
749-
var chainId = new BigInteger(42220);
750-
var (maxFee, maxPrio) = await Utils.FetchGasFees(this.Client, chainId);
751-
Assert.True(maxFee > 0);
752-
Assert.True(maxPrio > 0);
753-
Assert.Equal(maxFee, maxPrio);
754-
755-
chainId = new BigInteger(44787);
756-
(maxFee, maxPrio) = await Utils.FetchGasFees(this.Client, chainId);
757-
Assert.True(maxFee > 0);
758-
Assert.True(maxPrio > 0);
759-
Assert.Equal(maxFee, maxPrio);
760-
761-
chainId = new BigInteger(62320);
762-
(maxFee, maxPrio) = await Utils.FetchGasFees(this.Client, chainId);
763-
Assert.True(maxFee > 0);
764-
Assert.True(maxPrio > 0);
765-
Assert.Equal(maxFee, maxPrio);
766-
}
767-
768746
[Fact]
769747
public void PreprocessTypedDataJson_FormatsBigIntegers()
770748
{

0 commit comments

Comments
 (0)