-
Notifications
You must be signed in to change notification settings - Fork 17
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
Remove [create|sign|send]transaction interface #72
base: master
Are you sure you want to change the base?
Conversation
a128097
to
7a4eee3
Compare
Remove [create|sign|send]transaction. There preferred interface for creating and sending transactions is now the `tx` command.
7a4eee3
to
3f33483
Compare
I think I'd prefer to keep these interfaces for non-interactive use, although to reduce any maintenance overhead to zero, just have them take a json file/stdin only and return it, i.e. just pass through directly to the underlying gdk calls and resolve them. The If we are concerned about end user confusion I would be happy if these are hidden behind |
Yes I'm happy with that idea - it reduces those calls to trivial wrappers exposing the underlying gdk calls.
With the
Yes may be a good idea - or make it |
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.
?
? |
Remove [create|sign|send]transaction. There preferred interface for
creating and sending transactions is now the
tx
command.