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

Store old blocks and txs after regenesis #1811

Merged
merged 33 commits into from
Apr 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
08ba789
Store old blocks and txs after regenesis
Dentosal Apr 8, 2024
056fead
Seamless iteration with old and new blocks
Dentosal Apr 8, 2024
62a1a75
Merge branch 'master' into dento/regenesis-old-blocks-and-txs
Dentosal Apr 9, 2024
04efca5
Merge branch 'master' into dento/regenesis-old-blocks-and-txs
Dentosal Apr 9, 2024
0235fb6
Make first_block_height not return option as it always exists
Dentosal Apr 9, 2024
116d284
Fallback to old receipts if needed
Dentosal Apr 9, 2024
0009390
Start working on fuel-core-driver e2e tests
Dentosal Apr 11, 2024
6f80c34
Actually make it work and add tests
Dentosal Apr 15, 2024
c4ed9b2
Merge branch 'master' into dento/regenesis-old-blocks-and-txs
Dentosal Apr 15, 2024
5f69c77
Add changelog entry
Dentosal Apr 15, 2024
df76ebe
Rename test
Dentosal Apr 15, 2024
1690040
Restore lints
Dentosal Apr 15, 2024
151e8d3
Cleanup
Dentosal Apr 15, 2024
27bee84
Merge branch 'master' into dento/regenesis-old-blocks-and-txs
xgreenx Apr 16, 2024
e7ef64c
Address some PR feedback
Dentosal Apr 16, 2024
3a721e5
Remove new fields from StateConfig
Dentosal Apr 16, 2024
8d5f143
Expose fuel_core_bin as library; use it for e2e test
Dentosal Apr 17, 2024
f84e332
fmt Cargo.toml
Dentosal Apr 17, 2024
1cffc26
clippy
Dentosal Apr 17, 2024
38e49e7
Merge branch 'master' into dento/regenesis-old-blocks-and-txs
Dentosal Apr 17, 2024
7709fd2
Add a sleep in e2e test to avoid patch race condition on db close
Dentosal Apr 17, 2024
0f6e351
Address review comment
Dentosal Apr 17, 2024
b630cd9
Use FuelService directly
Dentosal Apr 17, 2024
94fec14
WIP: keep old* tables
Dentosal Apr 17, 2024
0bc4bf4
Soemthing=)
xgreenx Apr 17, 2024
8c26e45
No spawn
xgreenx Apr 17, 2024
a6a2ade
Fix types on future-order-linearization
Dentosal Apr 17, 2024
81e8cb5
Merge branch 'master' into dento/regenesis-old-blocks-and-txs
Dentosal Apr 18, 2024
1122d37
Cleanup
Dentosal Apr 18, 2024
022f087
Fixed the issue with wrong progress because of the writing into the s…
xgreenx Apr 18, 2024
67ba362
Increase time limit to avoid flikiness
xgreenx Apr 18, 2024
ad83331
Apply comment and increase time for node start up
xgreenx Apr 18, 2024
b80e2b0
Removed useless second wait
xgreenx Apr 18, 2024
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
Prev Previous commit
Next Next commit
Add changelog entry
Dentosal committed Apr 15, 2024

Unverified

This user has not yet uploaded their public signing key.
commit 5f69c7733e46a815a6569b70cbe456e67919d4d0
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -18,6 +18,7 @@ Description of the upcoming release here.
- [#1821](https://github.com/FuelLabs/fuel-core/pull/1821): Propagate shutdown signal to (re)genesis. Also add progress bar for (re)genesis.
- [#1813](https://github.com/FuelLabs/fuel-core/pull/1813): Added back support for `/health` endpoint.
- [#1799](https://github.com/FuelLabs/fuel-core/pull/1799): Snapshot creation is now concurrent.
- [#1811](https://github.com/FuelLabs/fuel-core/pull/1811): Regenesis now preserves old blocks and transactions for GraphQL API.

### Changed