config: fix addrbook path to go in config

This commit is contained in:
Ethan Buchman
2018-01-23 22:21:17 -05:00
parent 775bb85efb
commit 85816877c6
4 changed files with 16 additions and 14 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ import (
/* Loading & Saving */
type addrBookJSON struct {
Key string
Addrs []*knownAddress
Key string `json:"key"`
Addrs []*knownAddress `json:"addrs"`
}
func (a *addrBook) saveToFile(filePath string) {