We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, Negative Input for setCommission like this.
setCommission
build/bin/geth manage-staking setCommissionRate \ --datadir ./.pls.staking/operator1 \ --rootchain.url ws://127.0.0.1:8546 \ --unlock 0x5e3230019fed7ab462e3ac277e7709b9b2716b4f \ --password pwd.pass \ --rootchain.sender 0x5e3230019fed7ab462e3ac277e7709b9b2716b4f \ -- -0.4
Cause CLI could not recognize with - operator as a minus. treat as starting flag.
-
And also, the negative commission rate output as following.
rootchain=0xd6662103d7Ffd6D44792d9866AfAD0Beef5d3c32 commissionRate=-0.010
User and Operator may mis reading as a positive rate In a terminal.
I suggest that using prefix "M" with commission rate input.
Expecting result.
build/bin/geth manage-staking setCommissionRate M0.01 \ --datadir ./.pls.staking/operator1 \ --rootchain.url ws://127.0.0.1:8546 \ --unlock 0x5e3230019fed7ab462e3ac277e7709b9b2716b4f \ --password pwd.pass \ --rootchain.sender 0x5e3230019fed7ab462e3ac277e7709b9b2716b4f rootchain=0xd6662103d7Ffd6D44792d9866AfAD0Beef5d3c32 commissionRate=M0.010
The text was updated successfully, but these errors were encountered:
sifnoc
No branches or pull requests
Currently, Negative Input for
setCommission
like this.Cause CLI could not recognize with
-
operator as a minus. treat as starting flag.And also, the negative commission rate output as following.
User and Operator may mis reading as a positive rate In a terminal.
I suggest that using prefix "M" with commission rate input.
Expecting result.
The text was updated successfully, but these errors were encountered: