PS W:\Desktop> docker exec -it creditcoin-validator creditcoin-cli wizard -a 5000 --commission 2
๐ง Running staking wizard...
โ Specify a seed phrase for the Stash account โฆ ******************************************************************************
โ Specify a seed phrase for the Controller account โฆ ************************************************************************
Using the following parameters:
๐ฐ Stash account: 5FHb2LD6UMZ74dBQH6hP5vokXQnsSnWgVcrgEqjZY2nUnqFx
๐ฎ Controller account: 5DJJLnhLYVBt9Nou8sJACJhy7RPcm43bqrfnqwiheq5AzVSx
๐ช Amount to bond: 5000.000000000000000000 CTC
๐ Reward destination: Staked
๐ก Node URL: ws://localhost:9944
๐ธ Commission: 2
๐ Blocked: No
Note the Stash Account is 5FHb2LD6UMZ74dBQH6hP5vokXQnsSnWgVcrgEqjZY2nUnqFx and the controller account is 5DJJLnhLYVBt9Nou8sJACJhy7RPcm43bqrfnqwiheq5AzVSx
If I run creditcoin-cli status with the Stash account ( 5FHb2LD6UMZ74dBQH6hP5vokXQnsSnWgVcrgEqjZY2nUnqFx) both the Stash and Controller accounts show as the same account:
PS W:\Desktop> docker exec -it creditcoin-validator creditcoin-cli status -a 5FHb2LD6UMZ74dBQH6hP5vokXQnsSnWgVcrgEqjZY2nUnqFx
Bonded: true
Stash: 5DJJLnhLYVBt9Nou8sJACJhy7RPcm43bqrfnqwiheq5AzVSx
Controller: 5DJJLnhLYVBt9Nou8sJACJhy7RPcm43bqrfnqwiheq5AzVSx
Validating: true
Waiting: true
Active: false
Can withdraw: false
Next unbonding chunk: None
After going through the Validator Wizard with a new set of accounts, I see whatโs happening in my original post.
It was combining both attempts into one set of output, basically. Hereโs the output from my new attempt, which looks correct and makes it more obvious what happened with my initial attempt.
Using the following parameters:
๐ฐ Stash account: 5HZ2JXyN1cTTeAXge4w4EUjcmHBSDvn4U8PReBHdSynSzKcN
๐ฎ Controller account: 5ECHW4xjL8iJuTBBijS18hjmT9DPpzCfUCEVhqmgSZAvyz3K
๐ช Amount to bond: 4900.000000000000000000 CTC
๐ Reward destination: Staked
๐ก Node URL: ws://localhost:9944
๐ธ Commission: 5
๐ Blocked: No
docker exec -it creditcoin-validator creditcoin-cli status -a 5HZ2JXyN1cTTeAXge4w4EUjcmHBSDvn4U8PReBHdSynSzKcN
Bonded: true
Controller: 5ECHW4xjL8iJuTBBijS18hjmT9DPpzCfUCEVhqmgSZAvyz3K
Validating: true
Waiting: true
Active: false
Can withdraw: false
Next unbonding chunk: None
docker exec -it creditcoin-validator creditcoin-cli status -a 5ECHW4xjL8iJuTBBijS18hjmT9DPpzCfUCEVhqmgSZAvyz3K
Bonded: false
Stash: 5HZ2JXyN1cTTeAXge4w4EUjcmHBSDvn4U8PReBHdSynSzKcN
Controller: None
Validating: false
Waiting: false
Active: false
Can withdraw: false
Next unbonding chunk: None