Skip to content

Commit

Permalink
Merge pull request #22 from phoreproject/updateIPFS
Browse files Browse the repository at this point in the history
Update ipfs
  • Loading branch information
anchaj authored Jun 2, 2019
2 parents b807c1d + 6c2040f commit ad9b3a9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
)

var (
VERSION = "1.3.0"
VERSION = "1.3.4"
USERAGENT = "/Phore-Marketplace-go:" + VERSION + "/"
)

Expand Down
16 changes: 10 additions & 6 deletions schema/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,15 @@ const (
// End SQL Statements

// Configuration defaults
DataPushNodeOne = "QmWbi8z4uPkEdrWHtgxCkQGE5vxJnrStXAeEQnupmQnKRh"
DataPushNodeOne = "QmWbi8z4uPkEdrWHtgxCkQGE5vxJnrStXAeEQnupmQnKRh"
DataPushNodeTwo = "QmRh7fSZyFHesEL9aTmdxbrvMFxzyFxoaQGjYBotot6WLw"
DataPushNodeThree = "QmZLs6zVpVtkoR8oYyAbCxujvC6weU5CgUPTYx8zKMAtTf"

BootstrapNodeDefaultOne = "/ip4/54.227.172.110/tcp/5001/ipfs/QmWbi8z4uPkEdrWHtgxCkQGE5vxJnrStXAeEQnupmQnKRh"
BootstrapNodeDefaultTwo = "/ip4/45.63.71.103/tcp/5001/ipfs/QmRh7fSZyFHesEL9aTmdxbrvMFxzyFxoaQGjYBotot6WLw"
BootstrapNodeDefaultThree = "/ip4/54.175.193.226/tcp/5001/ipfs/QmZLs6zVpVtkoR8oYyAbCxujvC6weU5CgUPTYx8zKMAtTf"
BootstrapNodeDefault_LeMarcheSerpette = "/ip4/159.203.115.78/tcp/5001/ipfs/QmPJuP4Myo8pGL1k56b85Q4rpaoSnmn5L3wLjYHTzbBrk1"
BootstrapNodeDefault_BrixtonVillage = "/ip4/104.131.19.44/tcp/5001/ipfs/QmRvbZttqh6CPFiMKWa1jPfRR9JxagYRv4wsvMAG4ADUTj"
BootstrapNodeDefault_Johari = "/ip4/45.32.171.119/tcp/5001/ipfs/QmbkmTrfSjniyMUfYt9tVUcfZC8yeshVFYsnJ4kuzveYWc"
BootstrapNodeDefault_DuoSearch = "/ip4/54.227.172.110/tcp/5001/ipfs/QmWbi8z4uPkEdrWHtgxCkQGE5vxJnrStXAeEQnupmQnKRh"
// End Configuration defaults
)

Expand All @@ -55,13 +58,14 @@ var (
)

var (
DataPushNodes = []string{DataPushNodeOne}
DataPushNodes = []string{DataPushNodeOne, DataPushNodeTwo, DataPushNodeThree}

BootstrapAddressesDefault = []string{
BootstrapNodeDefaultOne,
BootstrapNodeDefaultTwo,
BootstrapNodeDefaultThree,
BootstrapNodeDefault_LeMarcheSerpette,
BootstrapNodeDefault_BrixtonVillage,
BootstrapNodeDefault_Johari,
BootstrapNodeDefault_DuoSearch,
}
BootstrapAddressesTestnet = []string{}
)

0 comments on commit ad9b3a9

Please sign in to comment.