-
Notifications
You must be signed in to change notification settings - Fork 37.8k
[Refactor] decouple wallet rpc commands #5934
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
[Refactor] decouple wallet rpc commands #5934
Conversation
674fc82
to
07c3027
Compare
I think this PR's implementation is not perfect and is not very modular. But it would give the opportunity to slowly decouple the wallet from the rest of the core. Longterm goals to achieve with this PR:
|
/** | ||
* Add new conversion to the JSON RPC conversion table | ||
* @param method name of the method | ||
* @param idx 0-based index of the paramter |
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.
s/paramter/parameter
07c3027
to
d41f25a
Compare
Rebased |
Needs rebase |
- this will allow a upcomming modularization of the wallet or other components
- add method to insert custom conversion entries Conflicts: src/test/rpc_tests.cpp
Using pointers signals the responsibility of managing object lifetime is in the hand of the caller.
d41f25a
to
a6b659a
Compare
Rebased. |
Closing in favor of #6006 |
includes #5744