Closed flofrie closed 1 week ago
According to aut account verify-signature -h, the command line switch -f for specifying the FROM address should be equivalent to --from.
aut account verify-signature -h
-f
--from
However, this does not work:
aut -v account verify-signature -f [FROM-ADDRESS] [MESSAGE] sigfile.txt
(Fails with "Error: Got unexpected extra argument (sigfile.txt)")
... whereas this does:
aut -v account verify-signature --from [FROM-ADDRESS] [MESSAGE] sigfile.txt
Resolved by #171
According to
aut account verify-signature -h
, the command line switch-f
for specifying the FROM address should be equivalent to--from
.However, this does not work:
aut -v account verify-signature -f [FROM-ADDRESS] [MESSAGE] sigfile.txt
(Fails with "Error: Got unexpected extra argument (sigfile.txt)")
... whereas this does:
aut -v account verify-signature --from [FROM-ADDRESS] [MESSAGE] sigfile.txt