mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-26 07:28:20 +08:00
fix typo in AddrFilters error message
License: MIT Signed-off-by: Adam Gashlin <agashlin@gmail.com>
This commit is contained in:
@ -147,7 +147,7 @@ func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption Routin
|
||||
for _, s := range cfg.Swarm.AddrFilters {
|
||||
f, err := mamask.NewMask(s)
|
||||
if err != nil {
|
||||
return fmt.Errorf("incorrectly formatter address filter in config: %s", s)
|
||||
return fmt.Errorf("incorrectly formatted address filter in config: %s", s)
|
||||
}
|
||||
addrfilter = append(addrfilter, f)
|
||||
}
|
||||
|
Reference in New Issue
Block a user