-
Notifications
You must be signed in to change notification settings - Fork 278
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
Add http handlers for createclaim/sendclaim #830
base: master
Are you sure you want to change the base?
Conversation
This adds http handlers for the createclaim/sendclaim rpc methods. This was made for shakestation so I could select which wallet to create/send claims from without having to rpc selectwallet which could potentially break other scripts that may have been running at the same time.
I think it would be more appropriate if it followed convention for the name related endpoints.
Accepting post data: |
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.
Make lint happy
const name = valid.str('name'); | ||
|
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.
const name = valid.str('name'); | |
const name = valid.str('name'); | |
const name = valid.str('name'); | ||
|
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.
const name = valid.str('name'); | |
const name = valid.str('name'); | |
This adds http handlers for the createclaim/sendclaim rpc methods.
This was made for shakestation so I could select which wallet to create/send claims from without having to rpc selectwallet which could potentially break other scripts that may have been running at the same time.