Skip to content

Commit

Permalink
chore: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
sripwoud committed Jun 26, 2024
1 parent 977a228 commit bd7ace3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
coveralls:
runs-on: ubuntu-latest
if: needs.changed-files.outputs.any_changed == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main'
if: needs.changed-files.outputs.any_changed == 'true' && github.event_name == 'pull_request' && github.ref == 'refs/pull/15/merge'
needs: [changed-files, tests]
steps:
- name: Coveralls
Expand Down
2 changes: 2 additions & 0 deletions packages/lazytower/contracts/LazyTowerHashChain.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

// trigger workflow

import {PoseidonT3} from "poseidon-solidity/PoseidonT3.sol";
// CAPACITY = W * (W**0 + W**1 + ... + W**(H - 1)) = W * (W**H - 1) / (W - 1)
// 4 * (4**24 - 1) / (4 - 1) = 375_299_968_947_540;
Expand Down

0 comments on commit bd7ace3

Please sign in to comment.