need to slow down

This commit is contained in:
Cassandra Heart 2023-04-16 22:56:15 -04:00
parent ec7ea35a2d
commit e43744fe78
No known key found for this signature in database
GPG Key ID: 6352152859385958

View File

@ -15,7 +15,7 @@ func main() {
state := GetSequencerState()
for state != SEQUENCER_ACCEPTING {
fmt.Println("Sequencer currently not accepting new contributions, waiting...")
time.Sleep(1 * time.Second)
time.Sleep(30 * time.Second)
state = GetSequencerState()
}