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
Instead of this sophisticated pattern,
default_stake = 50000000000000000000000000000000 stake_delta = 5000000000000000000000000000000 ... start_cluster(..., ["validators", 0, "amount", str(default_stake + stake_delta)], ["validators", 1, "amount", str(default_stake - stake_delta)], ["records", 0, "Account", "account", "locked", str(default_stake + stake_delta)], ["records", 2, "Account", "account", "locked", str(default_stake - stake_delta)]
pass simpler arguments to init with stakes other than default_stake, without breaking validators and total_supply.
validators
total_supply
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Instead of this sophisticated pattern,
pass simpler arguments to init with stakes other than default_stake, without breaking
validators
andtotal_supply
.The text was updated successfully, but these errors were encountered: