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

Introducing base fee + hard fork logic #933

Merged
merged 32 commits into from
Jan 30, 2025
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2e97a1a
feat: add the dynamic fee tx and support for typed txs
paologalligit Nov 29, 2024
47ce11b
test: add tests for txpool and logdb
paologalligit Dec 2, 2024
492ac99
refactor: split builder into legacy and dynFee builder
paologalligit Dec 3, 2024
297cb4e
test: add more tests including dynamic fee txs
paologalligit Dec 5, 2024
985417c
test: add tests for legacy and dynamic tx builder
paologalligit Dec 5, 2024
18f6cad
test: add more dynFee txs to tests
paologalligit Dec 18, 2024
8be755e
refactor: merge tx builder into one builder
paologalligit Jan 9, 2025
c183504
refactor: add MustBuild to tx builder and fix error
paologalligit Jan 23, 2025
edcfcd7
refactor: move hashWithoutNonce to concrete tx implementation
paologalligit Jan 23, 2025
3658676
feat: add the dynamic fee tx and support for typed txs
paologalligit Nov 29, 2024
620e4e2
feat: add baseFee to header struct
paologalligit Dec 6, 2024
e15a48f
test: add more header tests
paologalligit Dec 9, 2024
e8b2745
fix: replace header type in baseFee calc
paologalligit Dec 12, 2024
7b42d92
refactor: use the extension struct to include the baseFee instead of …
paologalligit Dec 16, 2024
13ca58e
feat: add galactica fork
paologalligit Dec 17, 2024
9af7b02
feat: add header check for galactica fork
paologalligit Dec 17, 2024
d539df7
feat: add checks for new galactica header
paologalligit Dec 18, 2024
5f626ca
clean
paologalligit Jan 3, 2025
a882555
test: add baseFee tests with consecutive empty and full blocks
paologalligit Jan 3, 2025
0dd1585
fix: revert go.mod
paologalligit Jan 7, 2025
92e0cd3
fix: clean code
paologalligit Jan 7, 2025
f7cf6dc
feat: include baseFee when Galactica fork enebled + tests
paologalligit Jan 7, 2025
458dab6
style: fix lowercase
paologalligit Jan 8, 2025
0f6c4f7
test: fix test
paologalligit Jan 10, 2025
0baeeb0
test: add validate block tests
paologalligit Jan 14, 2025
12d81ae
fix: go.mod file
paologalligit Jan 14, 2025
57860c9
fix: base fee tests
paologalligit Jan 15, 2025
422defb
tests: add more dyn fee tx tests
paologalligit Jan 24, 2025
6790e11
fix: rebase conflicts
paologalligit Jan 24, 2025
47454ff
fix: remove check on gas limit block header before galactica
paologalligit Jan 24, 2025
4617f3b
fixes as per review
paologalligit Jan 29, 2025
83d5be9
test: refactor block builder test
paologalligit Jan 29, 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
Prev Previous commit
Next Next commit
clean
paologalligit committed Jan 24, 2025
commit 5f626ca4cc8f5d5efb0606f897a3ea83c05adb2b
1 change: 0 additions & 1 deletion tx/transaction.go
Original file line number Diff line number Diff line change
@@ -24,7 +24,6 @@ import (

var (
errIntrinsicGasOverflow = errors.New("intrinsic gas overflow")
ErrInvalidTxType = errors.New("transaction type not valid in this context")
ErrTxTypeNotSupported = errors.New("transaction type not supported")
errEmptyTypedTx = errors.New("empty typed transaction bytes")
)