The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/consensus/config.go

10 lines
258 B

package consensus
import "time"
const (
// blockDuration is the period a node try to publish a new block if it's leader
blockDuration time.Duration = 5 * time.Second
receiveTimeout time.Duration = 5 * time.Second
maxLogSize uint32 = 1000
)