mirror of
https://github.com/noot/try-dandelion.git
synced 2026-01-11 14:58:12 -05:00
11 lines
183 B
Go
11 lines
183 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
errFailedToBootstrap = errors.New("failed to bootstrap to any bootnode")
|
|
errNoTopic = errors.New("given topic does not exist")
|
|
)
|