diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 24d0891b..e40ca242 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -50,6 +50,9 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 - name: Install Rust uses: actions-rs/toolchain@v1 @@ -72,6 +75,9 @@ jobs: - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 + - name: Submodule update + run: git submodule update --init --recursive + - name: docker uses: docker-practice/actions-setup-docker@master - name: Run unit tests diff --git a/contracts/script/utils/SetupPaymentsLib.sol b/contracts/script/utils/SetupPaymentsLib.sol index 231f7df4..c117f8b0 100644 --- a/contracts/script/utils/SetupPaymentsLib.sol +++ b/contracts/script/utils/SetupPaymentsLib.sol @@ -89,7 +89,6 @@ library SetupPaymentsLib { uint256 NUM_TOKEN_EARNINGS, string memory filePath ) internal { - console.log("tokenLeaves[0]"); console.logBytes32(tokenLeaves[0]); bytes32 paymentRoot = createPaymentRoot( rewardsCoordinator, tokenLeaves, earnerLeaves, NUM_PAYMENTS, NUM_TOKEN_EARNINGS, strategy, filePath