-
Notifications
You must be signed in to change notification settings - Fork 274
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
Replace BlockID with the HeaderHash #287
Conversation
@liamsi I wasn't quite sure what to do with this block retrieving logic in the store package. I'm guessing that we're replacing a portion of this with |
Yeah, you are right. Most places like these and others will be replaced by In some cases it might be worth to rethink the current logic, e.g. for some RPC endpoints (see #195). |
@liamsi I think I can split this into a separate PR, will we need #218 to do this properly? |
Closing as this is no longer required. |
Description
This draft PR is starting the process of using only the header hash instead of BlockID, along with a few necessary changes that also closer adhere to the spec. As expected, everything is breaking, but I think I'm ~1/2 done to getting it to compile.
Closes: #184