-
Notifications
You must be signed in to change notification settings - Fork 36
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
Don't download every wallet transaction #11
Comments
jrick
added a commit
to jrick/Paymetheus
that referenced
this issue
Jul 1, 2016
This change requires a newer version of the wallet's RPC API. Fixes #10. Fixes btcsuite#11.
jrick
added a commit
to jrick/Paymetheus
that referenced
this issue
Jul 1, 2016
This change requires a newer version of the wallet's RPC API. Fixes #10. Fixes btcsuite#11.
jrick
added a commit
to jrick/Paymetheus
that referenced
this issue
Jul 1, 2016
This change requires a newer version of the wallet's RPC API. Fixes #10. Fixes btcsuite#11.
jrick
added a commit
to jrick/Paymetheus
that referenced
this issue
Jul 5, 2016
This change requires a newer version of the wallet's RPC API. Fixes #10. Fixes btcsuite#11.
jrick
added a commit
to jrick/Paymetheus
that referenced
this issue
Jul 5, 2016
This change requires a newer version of the wallet's RPC API. Fixes #10. Fixes btcsuite#11.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The intent is to only save transactions from the last 100 (coinbase maturity) blocks since these are needed to efficiently calculate a balance given any arbitrary number of confirmations, without going back over RPC.
Some of the code works with just these recent transactions available, but other parts (account history) require every transaction that is relevant to the wallet to be in Paymetheus's memory. RPC will be required to download these transactions as needed and discard when they are finished being used.
The text was updated successfully, but these errors were encountered: