burn part of reg fee. deploy pool #12

Merged
mico merged 9 commits from burn into main 2024-11-01 10:55:05 +00:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit 8d4ec9f0c5 - Show all commits

View File

@ -29,17 +29,17 @@
color: #9b215e;
}
& > .boss3 {
color: #ebb638;
}
& > .boss4 {
color: #c6282e;
}
& > .boss5 {
& > .boss4 {
color: #d06b53;
}
& > .boss6 {
& > .boss5 {
color: #8f968f;
}
& > .boss6 {
color: #ebb638;
}
}
& small {
opacity: 0.7;

View File

@ -111,7 +111,7 @@ contract raid_geldTest is Test, Constants {
function test_22_random_range(uint256 min, uint256 max) public {
vm.assume(max > min);
vm.assume(max - min < 100);
vm.assume(max - min < 200);
vm.assume(max < type(uint256).max);
uint256 range = max - min + 1;
bool[] memory seen = new bool[](range);