p2p,node: Fix bug with dumpconfig introduced in r54aeb8e4c0bb9f0e7a6c67258af67df3b266af3d

This commit is contained in:
Martin Holst Swende 2018-01-24 11:30:45 +01:00
parent b0c2ac46ef
commit 226aef18c8
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0
2 changed files with 2 additions and 2 deletions

View file

@ -145,7 +145,7 @@ type Config struct {
WSExposeAll bool `toml:",omitempty"` WSExposeAll bool `toml:",omitempty"`
// Logger is a custom logger to use with the p2p.Server. // Logger is a custom logger to use with the p2p.Server.
Logger log.Logger Logger log.Logger `toml:",omitempty"`
} }
// IPCEndpoint resolves an IPC endpoint based on a configured value, taking into // IPCEndpoint resolves an IPC endpoint based on a configured value, taking into

View file

@ -138,7 +138,7 @@ type Config struct {
EnableMsgEvents bool EnableMsgEvents bool
// Logger is a custom logger to use with the p2p.Server. // Logger is a custom logger to use with the p2p.Server.
Logger log.Logger Logger log.Logger `toml:",omitempty"`
} }
// Server manages all peer connections. // Server manages all peer connections.