Tracker for CLI improvements #14
Labels
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: public/icepick#14
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently, arguments are either positional and therefore required, or
--long-args
and therefore optional. However, while writing the SOL transfer, I noticed it gets rather bulky when using positional required arguments. For example:This should instead probably be represented as:
Amount, to-address, blockhash, and from-address are still reuqired, but only amount and to address (the two "actually" relevant values) are positional.
Or, make everything
--long-args
.