go-ipfs-config: Capitalized `NOTE`, first letter of following word
License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
Richard Littauer committed
Apr 29, 2016 at 16:57 UTC
ef1a5c04a852cf3b0e5fa031ac3514059985e1da
2 files changed
+2
-2
config/bootstrap_peers.go
+1
-1
@@ -11,7 +11,7 @@ import (
11
// for ipfs. they are nodes run by the ipfs team. docs on these later.
12
// As with all p2p networks, bootstrap is an important security concern.
13
//
14
-// Note: this is here -- and not inside cmd/ipfs/init.go -- because of an
14
+// NOTE: This is here -- and not inside cmd/ipfs/init.go -- because of an
15
// import dependency issue. TODO: move this into a config/default/ package.
16
var DefaultBootstrapAddresses = []string{
17
"/ip4/104.131.131.82/tcp/4001/ipfs/QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ", // mars.i.ipfs.io
config/init.go
+1
-1
@@ -29,7 +29,7 @@ func Init(out io.Writer, nBitsForKeypair int) (*Config, error) {
29
conf := &Config{
30
31
// setup the node's default addresses.
32
- // Note: two swarm listen addrs, one tcp, one utp.
32
+ // NOTE: two swarm listen addrs, one tcp, one utp.
33
Addresses: Addresses{
34
Swarm: []string{
35
"/ip4/0.0.0.0/tcp/4001",