This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Add blockstore address-to-signature index #9367
Merged
solana-grimes
merged 6 commits into
solana-labs:master
from
CriesofCarrots:blockstore-account-index
Apr 8, 2020
Merged
Add blockstore address-to-signature index #9367
solana-grimes
merged 6 commits into
solana-labs:master
from
CriesofCarrots:blockstore-account-index
Apr 8, 2020
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bf2ab9f
to
f172c60
Compare
Codecov Report
@@ Coverage Diff @@
## master #9367 +/- ##
========================================
- Coverage 81.1% 81.0% -0.1%
========================================
Files 276 276
Lines 61908 62045 +137
========================================
+ Hits 50233 50305 +72
- Misses 11675 11740 +65 |
mvines
reviewed
Apr 8, 2020
f172c60
to
ead5add
Compare
mvines
previously approved these changes
Apr 8, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're going to backport to v1.1/v1.0 later?
Easier to do it change by change, so I'll tag this one now. |
TW talks to mainnet-beta, so 💯 on that v1.0 backport |
mergify bot
pushed a commit
that referenced
this pull request
Apr 8, 2020
automerge (cherry picked from commit 36e73ca)
mergify bot
pushed a commit
that referenced
this pull request
Apr 8, 2020
automerge (cherry picked from commit 36e73ca)
solana-grimes
pushed a commit
that referenced
this pull request
Apr 8, 2020
solana-grimes
pushed a commit
that referenced
this pull request
Apr 8, 2020
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
For the history that an API node maintains, it's not possible to fetch the list of transactions that affect a given address. In order to be able to do that, we need a performant way to get address transaction information from blockstore.
Summary of Changes
Toward #9317