Skip to content

Commit

Permalink
Merge pull request #254 from EdwardDaniels0622/main
Browse files Browse the repository at this point in the history
Update zkLightClient test
  • Loading branch information
philllau authored Dec 19, 2023
2 parents fceea60 + 3f4ac83 commit 9986acb
Show file tree
Hide file tree
Showing 3 changed files with 488 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mapclients/zkLightClient/contracts/LightNode.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ contract LightNode is UUPSUpgradeable, Initializable, ILightNode, BGLS {
address private pendingAdmin;
uint256 public startHeight;
ValidatorCommitment public validatorCommitment;
mapping(uint256 => ValidatorCommitment) validatorCommitments;
mapping(uint256 => ValidatorCommitment) public validatorCommitments;

struct ValidatorCommitment {
bytes32 commitment;
Expand Down
6 changes: 3 additions & 3 deletions mapclients/zkLightClient/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,9 @@ module.exports = {
accounts: accounts
},
BscTest: {
url: `https://data-seed-prebsc-2-s2.binance.org:8545`,
url: `https://data-seed-prebsc-2-s1.binance.org:8545/`,
chainId : 97,
accounts: accounts,
gasPrice: 11 * 1000000000
accounts: accounts
},
Klay: {
url: `https://public-node-api.klaytnapi.com/v1/cypress`,
Expand Down Expand Up @@ -116,6 +115,7 @@ module.exports = {
enabled: true,
runs: 200,
},
evmVersion: "london",
},
}
]
Expand Down
Loading

0 comments on commit 9986acb

Please sign in to comment.