diff --git a/config/config.go b/config/config.go index 48cb27a45..ff8a87741 100644 --- a/config/config.go +++ b/config/config.go @@ -666,7 +666,7 @@ type P2PConfig struct { //nolint: maligned TestDialFail bool `mapstructure:"test-dial-fail"` // Makes it possible to configure which queue backend the p2p - // layer uses. Options are: "fifo" and "priority", + // layer uses. Options are: "fifo", "simple-priority", and "priority" // with the default being "priority". QueueType string `mapstructure:"queue-type"` } diff --git a/config/toml.go b/config/toml.go index a9698096a..ba09df0fb 100644 --- a/config/toml.go +++ b/config/toml.go @@ -282,7 +282,9 @@ pprof-laddr = "{{ .RPC.PprofListenAddress }}" ####################################################### [p2p] -# Select the p2p internal queue +# Select the p2p internal queue. +# Options are: "fifo", "simple-priority", and "priority", +# with the default being "priority". queue-type = "{{ .P2P.QueueType }}" # Address to listen for incoming connections