Skip to content

Commit

Permalink
add submodules in yml
Browse files Browse the repository at this point in the history
  • Loading branch information
supernovahs committed Nov 8, 2024
1 parent 54b909e commit 0fc28ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 0 additions & 1 deletion contracts/script/utils/SetupPaymentsLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0fc28ca

Please sign in to comment.