Skip to content

Commit

Permalink
chore(e2e): reduce solver fund thresholds (#2633)
Browse files Browse the repository at this point in the history
Reduce solver fund threshold.

issue: none
  • Loading branch information
kevinhalliday authored Dec 4, 2024
1 parent 93deb95 commit 75d3599
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion e2e/app/eoa/fund.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ var (
RoleDeployer: thresholdTiny, // Protected chains are only deployed once
RoleTester: thresholdLarge, // Tester funds pingpongs, validator updates, etc, on non-mainnet.
RoleXCaller: thresholdSmall, // XCaller funds used for sending xmsgs across networks.
RoleSolver: thresholdLarge, // XCaller funds used for sending xmsgs across networks.
RoleSolver: thresholdMedium, // XCaller funds used for sending xmsgs across networks.
}

dynamicThresholdsByRole = map[Role]dynamicThreshold{
Expand Down
8 changes: 4 additions & 4 deletions e2e/app/eoa/testdata/threshold_reference.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@
"target": "2.0000"
},
"solver": {
"min": "10.0000",
"target": "50.0000"
"min": "0.5000",
"target": "2.0000"
},
"tester": {
"min": "10.0000",
Expand Down Expand Up @@ -240,8 +240,8 @@
"target": "1000.0000"
},
"solver": {
"min": "5000.0000",
"target": "25000.0000"
"min": "250.0000",
"target": "1000.0000"
},
"tester": {
"min": "5000.0000",
Expand Down

0 comments on commit 75d3599

Please sign in to comment.