Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Soloseng/L2-epoch-manager-test #11312

Merged
merged 29 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
caa2a2f
Merge remote-tracking branch 'origin/release/core-contracts/12' into …
soloseng Nov 21, 2024
4f4a917
WIP inheritance issues ?
soloseng Nov 22, 2024
75d40e9
Merge branch 'release/core-contracts/12' into soloseng/L2-FeeCurrency…
soloseng Dec 16, 2024
4a2c7f7
fixing compilation
soloseng Dec 20, 2024
d8a532f
removed mento from UsingRegistryV2 in 08
soloseng Dec 21, 2024
afe5356
using local precompile handler
soloseng Jan 7, 2025
23bd832
fixed unit test inheritance conflicts
soloseng Jan 7, 2025
e85910d
removed shadowed var
soloseng Jan 7, 2025
8b6b836
passing devchain e2e
soloseng Jan 7, 2025
5b3dd2d
passing migration test
soloseng Jan 7, 2025
ee99877
override Utils08 setup and cleanup
soloseng Jan 8, 2025
97d7ef3
change Utils08 filename
soloseng Jan 8, 2025
c519fa9
Merge remote-tracking branch 'origin/release/core-contracts/12' into …
soloseng Jan 8, 2025
3fa7426
Merge branch 'soloseng/L2-FeeCurrencyDirectory-test' into soloseng/fi…
soloseng Jan 8, 2025
48f0b7f
passing devchain
soloseng Jan 10, 2025
bf5de2d
reorg TestWithUtils08
soloseng Jan 10, 2025
4322801
Passing L2 epochManagerEnabler test
soloseng Jan 10, 2025
99f09b2
renamed to force update
soloseng Jan 13, 2025
da2d92a
using capital letter
soloseng Jan 13, 2025
5581845
Merge branch 'soloseng/fix-precompile-inheritance' into soloseng/L2-e…
soloseng Jan 13, 2025
21ad790
wip partially migrated without mockAccounts contract
soloseng Jan 14, 2025
f44045c
++ finish epoch processing L2 test
soloseng Jan 15, 2025
24b9f96
clean up setup
soloseng Jan 15, 2025
8f2fcf5
++ more working L1 & L2 test
soloseng Jan 16, 2025
0b31d9c
++ remaining L2 tests
soloseng Jan 16, 2025
286e569
clean up comments
soloseng Jan 16, 2025
c2af92f
more clean up
soloseng Jan 16, 2025
d5d1178
PR feedback
soloseng Jan 21, 2025
6d2f8e0
Merge remote-tracking branch 'origin/release/core-contracts/12' into …
soloseng Jan 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions packages/protocol/test-sol/TestWithUtils08.sol
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,11 @@ contract TestWithUtils08 is ForgeTest, TestConstants, IsL2Check, PrecompilesOver
epochManagerEnablerMockInterface.addValidator(_elected[1]);

for (uint256 i = 2; i < numberValidators; i++) {
vm.prank(vm.addr(i + 1));
address _currentValidator = vm.addr(i + 1);
vm.prank(_currentValidator);
accountsContract.createAccount();

epochManagerEnablerMockInterface.addValidator(vm.addr(i + 1));
epochManagerEnablerMockInterface.addValidator(_currentValidator);
}
travelNEpochL1(2);
}
Expand Down
Loading
Loading