chaintope / tapyrus-signer

Tapyrus Signer reference implementation.
GNU General Public License v3.0
7 stars 8 forks source link

Make `round limit` possible to configure #123

Closed rantan closed 4 years ago

rantan commented 4 years ago

The real round time consists of round duration and round limit.

round duration is time for waiting when the node starts new rounds. After round duration secs past, the master node of rounds starts to communicate with other nodes.

round limit is time-limit for the communication in each round. If the communications for rounds spends time more than round limit, the round would be regarded as a failure round and the next round would be started.

Now, the round limit is fixed as 15 secs. But if the threshold and signer count are bigger, I should spend more time. So, it should be configurable in the configuration file.