-
Notifications
You must be signed in to change notification settings - Fork 251
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
Feature: Add an in-memory wallet backend framework #1293
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1293 +/- ##
==========================================
- Coverage 63.23% 63.09% -0.15%
==========================================
Files 124 122 -2
Lines 14507 14058 -449
==========================================
- Hits 9174 8870 -304
+ Misses 5333 5188 -145 ☔ View full report in Codecov by Sentry. |
Fix the memory wallet build by hiding orchard fields in `new()` behind a flag
Co-authored-by: Kris Nuttycombe <[email protected]>
Basic `put_block` function for the memory wallet
I think it can be a good to create a list of the minimal requirements we consider needed to merge this PR while leave the rest of the functions to make individual pull requests against the main repo ? |
This sets up the general framework; most of the implementation is
todo!()
.Closes #1414.