Make queue recheck interval configurable via CLI

This commit is contained in:
Rob Mulholand
2019-05-01 12:32:39 -05:00
parent b036053937
commit 6716c3b92a
4 changed files with 20 additions and 3 deletions
+1 -1
View File
@@ -41,6 +41,7 @@ var (
genConfig config.Plugin
ipc string
levelDbPath string
queueRecheckInterval time.Duration
startingBlockNumber int64
storageDiffsPath string
syncAll bool
@@ -50,7 +51,6 @@ var (
const (
pollingInterval = 7 * time.Second
queueRecheckInterval = 5 * time.Minute
validationWindow = 15
)