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

Use expiration policy #2447

Merged
merged 43 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
afbfef2
Refactor fuel-core to use version of StorageRead::read with offset
acerone85 Nov 14, 2024
2b6e689
Merge branch 'master' into use-storage-read-with-offset
acerone85 Nov 14, 2024
8c27f1f
Changelog
acerone85 Nov 14, 2024
594f9ff
Add logic to remvoe tx when expired
AurelienFT Nov 21, 2024
bc66739
Update pruning to prune the whole range and add a test
AurelienFT Nov 21, 2024
863977d
Update changelog
AurelienFT Nov 21, 2024
c8ddfbb
Fix changelog spelling
AurelienFT Nov 21, 2024
aa75341
Add verification of expiration in executor
AurelienFT Nov 21, 2024
ba070e2
Merge branch 'master' into use-storage-read-with-offset
acerone85 Dec 4, 2024
83d9641
Update fuel-vm to 0.59.0
acerone85 Dec 4, 2024
5ca045e
Add missing todo
acerone85 Dec 4, 2024
bfe28fe
Fix snapshot
acerone85 Dec 4, 2024
ba9f641
Add block height and fix gas version
AurelienFT Dec 4, 2024
71a2be2
Remove old todo
AurelienFT Dec 4, 2024
f538a65
Fix compil
AurelienFT Dec 4, 2024
759110b
Add value new policy
AurelienFT Dec 4, 2024
9eb0bd6
Merge branch 'use-storage-read-with-offset' into use_expiration_policy
AurelienFT Dec 4, 2024
7f4bd85
Add safety checks
acerone85 Dec 4, 2024
5356264
Use master and fix derivative error.
AurelienFT Dec 9, 2024
c80881e
Fix lint toml
AurelienFT Dec 9, 2024
b1565f8
format prettier toml
AurelienFT Dec 9, 2024
59b4fc9
Lint toml.
AurelienFT Dec 9, 2024
0a27919
Merge branch 'master' into use-storage-read-with-offset
AurelienFT Dec 9, 2024
ef013b9
Merge branch 'master' into use-storage-read-with-offset
AurelienFT Dec 10, 2024
c668c15
Remove old serialization json version
AurelienFT Dec 10, 2024
e41ede9
fix tx json
AurelienFT Dec 10, 2024
7d60ea7
Update config files
AurelienFT Dec 11, 2024
15f404f
Update more config file with the new opcode
AurelienFT Dec 11, 2024
5b5ac86
Rust FMT
AurelienFT Dec 11, 2024
9d9deca
Fix nulleable gas costs.
AurelienFT Dec 11, 2024
e9ade9a
Update snapshot query graphql with new opcodes
AurelienFT Dec 11, 2024
d68995b
fix local chain config
AurelienFT Dec 11, 2024
e203ebb
use fuel-vm 0.59.1
AurelienFT Dec 13, 2024
5cd834a
Merge branch 'master' into use-storage-read-with-offset
AurelienFT Dec 13, 2024
527ec79
Merge branch 'use-storage-read-with-offset' into use_expiration_policy
AurelienFT Dec 16, 2024
74f8751
Merge branch 'master' into use_expiration_policy
AurelienFT Dec 24, 2024
1decc90
Merge branch 'master' into use_expiration_policy
AurelienFT Jan 3, 2025
0181fc3
Merge branch 'master' into use_expiration_policy
AurelienFT Jan 6, 2025
a29b1eb
Merge branch 'master' into use_expiration_policy
AurelienFT Jan 9, 2025
ba1825d
fix lock
AurelienFT Jan 9, 2025
1bbd716
Remove outdated code and added a new test on deletion
AurelienFT Jan 10, 2025
2060d7d
fix a little doc nit
AurelienFT Jan 10, 2025
93c613c
fix schema
AurelienFT Jan 10, 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- [2361](https://github.com/FuelLabs/fuel-core/pull/2361): Add caches to the sync service to not reask for data it already fetched from the network.
- [2327](https://github.com/FuelLabs/fuel-core/pull/2327): Add more services tests and more checks of the pool. Also add an high level documentation for users of the pool and contributors.
- [2416](https://github.com/FuelLabs/fuel-core/issues/2416): Define the `GasPriceServiceV1` task.
- [2447](https://github.com/FuelLabs/fuel-core/pull/2447): Use new `expiration` policy in the transaction pool. Add a mechanism to prune the transactions when they expired.
- [1922](https://github.com/FuelLabs/fuel-core/pull/1922): Added support for posting blocks to the shared sequencer.
- [2033](https://github.com/FuelLabs/fuel-core/pull/2033): Remove `Option<BlockHeight>` in favor of `BlockHeightQuery` where applicable.
- [2439](https://github.com/FuelLabs/fuel-core/pull/2439): Add gas costs for the two new zk opcodes `ecop` and `eadd` and the benches that allow to calibrate them.
Expand Down
Loading
Loading