Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
soloseng committed Dec 18, 2023
1 parent 00900e2 commit 3b6e82c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/protocol/lib/celo-foundry
Submodule celo-foundry updated 1 files
+1 −1 .gitmodules
1 change: 1 addition & 0 deletions packages/protocol/remappings.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@celo-contracts=contracts/
@celo-contracts-8=contracts-0.8/
@test-sol=test-sol
@lib=lib
8 changes: 4 additions & 4 deletions packages/protocol/test-sol/common/GasPriceMinimum.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ pragma solidity >=0.8.7 <0.8.20;

import "celo-foundry-8/Test.sol";

import "../../contracts/common/FixidityLib.sol";
import "@celo-contracts/common/FixidityLib.sol";

import "../../contracts/common/interfaces/IRegistry.sol";
import "@celo-contracts/common/interfaces/IRegistry.sol";

// Contract to test
import "../../contracts-0.8/common/GasPriceMinimum.sol";
import "@celo-contracts-8/common/GasPriceMinimum.sol";

contract GasPriceMinimumTest is Test {
using FixidityLib for FixidityLib.Fraction;
Expand Down Expand Up @@ -239,7 +239,7 @@ contract GasPriceMinimumGetUpdatedGasPriceMinimum is GasPriceMinimumTest {
assertEq(gasPriceMinimum.getUpdatedGasPriceMinimum(0, 1), expectedUpdatedGasPriceMinimum);
}

function test_shouldReturnAnUpdatedGasPriceMinimumThatMatchesATypescriptImplementation_WhenTheFullnessOfTheBlockIsRandom()
function test_shouldReturnAnUpdatedGasPriceMinimumThatMatchesARandomNumber_WhenTheFullnessOfTheBlockIsRandom()
public
{
uint256 numIterations = 100;
Expand Down

0 comments on commit 3b6e82c

Please sign in to comment.