Skip to content

Commit 9986acb

Browse files
authored
Merge pull request #254 from EdwardDaniels0622/main
Update zkLightClient test
2 parents fceea60 + 3f4ac83 commit 9986acb

File tree

3 files changed

+488
-4
lines changed

3 files changed

+488
-4
lines changed

mapclients/zkLightClient/contracts/LightNode.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ contract LightNode is UUPSUpgradeable, Initializable, ILightNode, BGLS {
2525
address private pendingAdmin;
2626
uint256 public startHeight;
2727
ValidatorCommitment public validatorCommitment;
28-
mapping(uint256 => ValidatorCommitment) validatorCommitments;
28+
mapping(uint256 => ValidatorCommitment) public validatorCommitments;
2929

3030
struct ValidatorCommitment {
3131
bytes32 commitment;

mapclients/zkLightClient/hardhat.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,9 @@ module.exports = {
7676
accounts: accounts
7777
},
7878
BscTest: {
79-
url: `https://data-seed-prebsc-2-s2.binance.org:8545`,
79+
url: `https://data-seed-prebsc-2-s1.binance.org:8545/`,
8080
chainId : 97,
81-
accounts: accounts,
82-
gasPrice: 11 * 1000000000
81+
accounts: accounts
8382
},
8483
Klay: {
8584
url: `https://public-node-api.klaytnapi.com/v1/cypress`,
@@ -116,6 +115,7 @@ module.exports = {
116115
enabled: true,
117116
runs: 200,
118117
},
118+
evmVersion: "london",
119119
},
120120
}
121121
]

0 commit comments

Comments
 (0)