-
Notifications
You must be signed in to change notification settings - Fork 22
Add Wallet::apply_changeset
#231
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
Draft
evanlinjin
wants to merge
1
commit into
bitcoindevkit:master
Choose a base branch
from
evanlinjin:feature/apply_changeset
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+17
−0
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Oops, something went wrong.
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.
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.
Does the OoO caveat apply to
apply_update
above too? If it does not I wonder if the increased serialized size (I'm getting a few kb) is a valid tradeoffThere 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.
That is a good point. I'm still a bit concerned about serializing
Update
s because of howCheckPoint
s can be used (as it is part of anUpdate
).CheckPoint
s are used to communicate between the wallet and the chain source.CheckPoint
s to tell the chain source it's initial blockchain state (before any updates).CheckPoint
s back to the wallet which is extended from what was provided from the wallet (as updates).These
CheckPoint
s can be sparse, or may include the whole chain. Additionally, we've been looking at makingCheckPoint
s generic so that alternative data types such asBlockHeader
(instead of justBlockHash
) can be stored (which would allow us to calculate MTP properly).Chain sources will be improved to incorporate more data into
CheckPoint
s. For example, we've come to realize that the only correct way to use Electrum is basically download every block (except for some of those below Electrum checkpoints - different to BDKCheckPoint
s). Eventually, we'll have a streaming version ofbdk_electrum
that will include block headers inCheckPoint
s and have a lot moreCheckPoint
s than what we have now.To summarize, what I am saying is that I expect a lot more data being shoved in
CheckPoint
s in the future (hope you are okay with this?). If you are okay with this point, I will be happy to support this feature.However, because
CheckPoint
is a linked list (so it's a deeply nested data structure), we may risk blowing the thread-stack if we purely use derive-generated, purely recursive impls ofSerialize
andDeserialize
. To move forward, I propose that we do some customSerialize
/Deserialize
impls into a list. ChatGPT gave some suggestions (not sure if it compiles):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.
Another way to do this, assuming that the wallet on the device is a "dumb wallet", is to just send over the canonical txs/UTXOs where the device is basically a slave of the main wallet. Not sure if this is appropriate with what you guys are going for.
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.
Additionally, the caveat with
ChangeSet
s will disappear once we modify/replaceLocalChain
with aGraphChain
(which @ValuedMammal is working on).