davewhiiite / solana-ms

Adventures in multisignature schemes using solana-cli
MIT License
3 stars 3 forks source link

Loop in shell scripts don't work with my system (SOLUTION) #2

Open Gitmazter opened 11 months ago

Gitmazter commented 11 months ago

I was trying to run the script for online multisigs and it broke during the for {1..3} loop which created only one wallet file named signer{1..3}.json

I resolved this by rewriting line 11 to

for i in 1 2 3 <--- do solana-keygen new --no-bip39-passphrase -o signer${i}.json; done

BestRamsay commented 11 months ago

Hi! Great, I'll fix this bug and we can make a pull request?