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

Reth v1.1.4 #78

Merged
merged 49 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
7efba8e
bump reth in toml
0xOsiris Dec 12, 2024
c348ea0
wip
0xOsiris Dec 12, 2024
fb52689
fix: ValidatedPbhTransactions
0xOsiris Dec 12, 2024
0b2ad03
patch test API changes
0xOsiris Dec 12, 2024
2e4bbeb
fix: tests
0xOsiris Dec 12, 2024
41293aa
Dzejkop/reth-1.1.4 (#79)
Dzejkop Dec 13, 2024
ddee3a8
Bring back e2e tests - faiiling
Dzejkop Dec 13, 2024
87b16b7
No more popup & serial_test
Dzejkop Dec 13, 2024
1136be1
update pooled tx primitive
0xOsiris Dec 13, 2024
150be28
wip update payload builder initialization
0xKitsune Dec 13, 2024
c2b0228
impl PayloadBuilder for WorldChainPayloadBuilder
0xKitsune Dec 13, 2024
612ccba
feat: override
0xOsiris Dec 13, 2024
212bfcd
add payload builder ctx
0xKitsune Dec 13, 2024
fe17d65
chore: fmt
0xOsiris Dec 13, 2024
f981763
payload attributes wip
0xKitsune Dec 13, 2024
c16640d
Update builder ctx types
0xKitsune Dec 13, 2024
0785f81
feat: conditionally forward transactions
0xOsiris Dec 13, 2024
a81ff6f
Merge pull request #80 from worldcoin/osiris/rpc
0xOsiris Dec 13, 2024
a0a827c
pbh wip
0xKitsune Dec 13, 2024
ef9ce8e
wip
0xKitsune Dec 13, 2024
8e372a7
wip
0xKitsune Dec 13, 2024
6080b66
wip
0xKitsune Dec 13, 2024
5177e1f
wip
0xKitsune Dec 13, 2024
9ad0569
fix: BestTransactions iterator
0xOsiris Dec 13, 2024
d76dc79
feat(payload-builder): error handling
0xOsiris Dec 13, 2024
fb25f99
fix: payload builder
0xOsiris Dec 13, 2024
937ec92
clippy
0xKitsune Dec 14, 2024
994bf51
remove invalid txs
0xKitsune Dec 15, 2024
a77adca
Enable test_utils within pool crate
Dzejkop Dec 16, 2024
a2af9cf
Replace methods instead of merging
Dzejkop Dec 16, 2024
d53165e
simplify
Dzejkop Dec 16, 2024
f4af176
fmt
Dzejkop Dec 16, 2024
83dfca8
Add binginds
Dzejkop Dec 16, 2024
db9adee
wip
0xOsiris Dec 16, 2024
5d9ef17
feat: parse PbhPayload from UO signature
0xOsiris Dec 16, 2024
f3fceeb
wip
0xOsiris Dec 16, 2024
77dddb3
test: add 4337 bundle validation tests
0xOsiris Dec 16, 2024
9a12f85
remove parse_signature
0xOsiris Dec 16, 2024
d5a37f6
remove rwlock
0xKitsune Dec 17, 2024
087aa8f
Merge pull request #82 from worldcoin/kit/bundle-validation
0xOsiris Dec 17, 2024
305cc2d
rm mdbx db
0xOsiris Dec 17, 2024
2ea1fd3
update comments
0xOsiris Dec 17, 2024
5bd9bff
Merge branch 'osiris/bundle-validation' of https://github.com/worldco…
0xOsiris Dec 17, 2024
1fb3b99
Merge pull request #81 from worldcoin/osiris/bundle-validation
0xOsiris Dec 17, 2024
f56a6c2
reduce nesting
Dzejkop Dec 17, 2024
b55606e
WIP: Testing
Dzejkop Dec 17, 2024
d50e8bb
Fix: deleted curly brace
Dzejkop Dec 17, 2024
eb37438
Validate user ops and payload counts
Dzejkop Dec 17, 2024
b4ff6db
update signal hash computation
0xOsiris Dec 17, 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
wip
  • Loading branch information
0xKitsune committed Dec 13, 2024
commit 5177e1fe2723a8266e22bb69e3fefaa51ba69d83
5 changes: 3 additions & 2 deletions world-chain-builder/crates/world/payload/src/builder.rs
Original file line number Diff line number Diff line change
@@ -818,7 +818,7 @@ where

// Push transaction changeset and calculate header bloom filter for receipt.
info.receipts.push(Some(Receipt {
tx_type: tx.tx_type(),
tx_type: tx.inner.transaction().tx_type(),
success: result.is_success(),
cumulative_gas_used: info.cumulative_gas_used,
logs: result.into_logs().into_iter().map(Into::into).collect(),
@@ -834,7 +834,8 @@ where

// append sender and transaction to the respective lists
info.executed_senders.push(tx.signer());
info.executed_transactions.push(tx.into_signed());
info.executed_transactions
.push(tx.inner.transaction().into_signed());
}

Ok(None)
Loading