Move from Clap Builder to Clap Derive #8
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#8
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?
if we use
::<CommandFactory>::command()
which is implied by Parser inclap --features derive
we can add an automatable, per-coin test suite to check whether each command supports thetransfer <amount> <to-address> --from-account [account]
format that needs to be shared by all coins.The builder is turning out to be a bit of a nightmare. For some reason, my value parsers aren't working, and the entire thing is a
.unwrap()
headache.Plus, this means making things oneshot will be easier at the risk of the tiniest amount of DRY.