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

Verify tx response data against request #6439

Merged
merged 48 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from 40 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
d1f8c59
Verify tx response data against request
emhane Feb 6, 2024
31d2a5e
Validate PooledTransactions response and verify against GetPooledTran…
emhane Feb 17, 2024
5c63562
Fix lint and docs
emhane Feb 18, 2024
499a5a1
Trace txns in response that fail verification
emhane Feb 18, 2024
8068e18
Fix lint, docs and tests in validation
emhane Feb 18, 2024
b43916a
Make log message futurue proof when adding more verifications on eth6…
emhane Feb 18, 2024
63db362
Update type name
emhane Feb 18, 2024
cce2ba2
fixup! Update type name
emhane Feb 18, 2024
9cf569c
Fix typo docs
emhane Feb 18, 2024
7903ae2
Fix docs
emhane Feb 18, 2024
f4efd70
Merge branch 'emhane/validate-tx-response' of github.com:paradigmxyz/…
emhane Feb 18, 2024
6acb930
Simplification
emhane Feb 18, 2024
e1c35b2
Advance inflight requests on-op
emhane Feb 14, 2024
ff6bb4a
Advance inflight requests when no requests are being queued
emhane Feb 16, 2024
7ad212d
Only advance inflight requests if no fetch events ready
emhane Feb 16, 2024
693dbca
Clean up and shrink scope
emhane Feb 16, 2024
502f19b
Fix conflicts cherry-picking off emhane/prioritisation-network-manager
emhane Feb 18, 2024
185723b
Fix docs by drive-by opening visibility to make tx fetcher extensible
emhane Feb 18, 2024
e265894
Drive-by, fix lint
emhane Feb 18, 2024
92f5374
Make docs more verbose
emhane Feb 18, 2024
235796b
Fix lint fix bug
emhane Feb 18, 2024
7fc3bf9
Pass context as param to cover edge case no boradcast activity
emhane Feb 18, 2024
5cc593e
Always advance inflight requests on poll
emhane Feb 18, 2024
df673a4
Try reduce merge conflicts
emhane Feb 22, 2024
13df3f1
Merge branch 'main' into emhane/one-req-per-peer-bottleneck
emhane Feb 22, 2024
fc5df9d
Fix lint
emhane Feb 22, 2024
e794ccb
Fix merge conflicts with main
emhane Feb 22, 2024
fd52b6c
Fix docs
emhane Feb 22, 2024
84eb44d
Merge branch 'main' into emhane/one-req-per-peer-bottleneck
emhane Feb 22, 2024
72a8ef5
Fix lint
emhane Feb 22, 2024
9feb4b1
Fix merge conflicts with emhane/one-req-per-peer-bottleneck
emhane Feb 22, 2024
963012b
Fix missing docs
emhane Feb 22, 2024
9065482
Fix merge conflicts
emhane Feb 22, 2024
358f3ac
Fix merge conflicts with emhane/one-req-per-peer-bottleneck
emhane Feb 22, 2024
2aadec6
Fix merge conflicts
emhane Feb 22, 2024
842c78d
Fix merge conflicts
emhane Feb 22, 2024
529c1d0
Merge branch 'emhane/one-req-per-peer-bottleneck' into emhane/validat…
emhane Feb 22, 2024
ddf0176
Fix lint
emhane Feb 22, 2024
9de1fb7
Fix lint
emhane Feb 22, 2024
a601871
Fix lint
emhane Feb 22, 2024
b4d4a02
Revert signature of retain_by_hash and retain_unknown
emhane Feb 26, 2024
74103ea
Update docs
emhane Feb 26, 2024
3eef7a1
Merge branch 'main' into emhane/validate-tx-response
emhane Feb 26, 2024
c0d6352
Fix conflicts of changing base to main
emhane Feb 27, 2024
f01b94b
Fix whitespace
emhane Feb 27, 2024
a0d253a
Nitpick
emhane Feb 27, 2024
ad77de2
Add issue link to comment
emhane Feb 27, 2024
aab3a03
Merge branch 'emhane/validate-tx-response' of github.com:paradigmxyz/…
emhane Feb 27, 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
19 changes: 19 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ hex-literal = "0.4"
once_cell = "1.17"
syn = "2.0"
nybbles = "0.1"
smallvec = "1.13"

# proc-macros
proc-macro2 = "1.0"
Expand Down
Loading