We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff56174 commit 18e65ddCopy full SHA for 18e65dd
1 file changed
test/discovery/fixtures.ts
@@ -15,10 +15,17 @@ export async function deployDiscoveryFixture() {
15
const MIN_COLLATERAL = ethers.parseEther("0.6");
16
const INITIAL_DELAY = 500n;
17
const RESIGN_DELAY = 500n;
18
+ const REWARD_PERCENTAGE = 50n; // 50% reward for punishers
19
20
const collateralManagement = await upgrades.deployProxy(
21
CollateralManagement,
- [owner.address, INITIAL_DELAY, MIN_COLLATERAL, RESIGN_DELAY]
22
+ [
23
+ owner.address,
24
+ INITIAL_DELAY,
25
+ MIN_COLLATERAL,
26
+ RESIGN_DELAY,
27
+ REWARD_PERCENTAGE,
28
+ ]
29
);
30
31
const discovery = await upgrades.deployProxy(FlyoverDiscovery, [
0 commit comments