You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For network launch in testnet, starting too many validators at the same time has caused network halts. These halts are avoidable if the validator is synced when the bond_validator call is made.
Implementation options
Running a node with start --validator in the case bond has not been called will run the node as client watching for bond_validator. As soon as that transaction is seen the node will shift to validator mode.
Allow bond_public transaction to be sent from validator when it catches up to head. This is effectively a script that runs the validator as a client and then when the client is close to tip issues the bond_validator
The text was updated successfully, but these errors were encountered:
🚀 Feature
Less down time when starting a validator.
Motivation
For network launch in testnet, starting too many validators at the same time has caused network halts. These halts are avoidable if the validator is synced when the
bond_validator
call is made.Implementation options
start --validator
in the case bond has not been called will run the node as client watching forbond_validator
. As soon as that transaction is seen the node will shift to validator mode.bond_validator
The text was updated successfully, but these errors were encountered: