diff options
author | zelig <viktor.tron@gmail.com> | 2015-03-18 04:59:21 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-03-18 04:59:21 +0800 |
commit | 187241831629b7c3e210db764cda1d9127ab48e5 (patch) | |
tree | c3232ee56dca5d3b7fa8df0ef5827b73c5b02e93 /eth | |
parent | 3ea99f989ff98432cbfa864d2e7e26628e16cc6f (diff) | |
download | go-tangerine-187241831629b7c3e210db764cda1d9127ab48e5.tar.gz go-tangerine-187241831629b7c3e210db764cda1d9127ab48e5.tar.zst go-tangerine-187241831629b7c3e210db764cda1d9127ab48e5.zip |
eth: remove disused peer_util.go
Diffstat (limited to 'eth')
-rw-r--r-- | eth/peer_util.go | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/eth/peer_util.go b/eth/peer_util.go deleted file mode 100644 index 18fef0ab5..000000000 --- a/eth/peer_util.go +++ /dev/null @@ -1,23 +0,0 @@ -package eth - -import ( - "encoding/json" - - "github.com/ethereum/go-ethereum/common" -) - -func WritePeers(path string, addresses []string) { - if len(addresses) > 0 { - data, _ := json.MarshalIndent(addresses, "", " ") - common.WriteFile(path, data) - } -} - -func ReadPeers(path string) (ips []string, err error) { - var data string - data, err = common.ReadAllFile(path) - if err != nil { - json.Unmarshal([]byte(data), &ips) - } - return -} |