nonessential storj-sim edits (#1086)

This commit is contained in:
Natalie Villasana 2019-01-17 15:59:26 -05:00 committed by GitHub
parent c4b876ddc5
commit 3bf7c7d43b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,7 +126,7 @@ func newNetwork(flags *Flags) (*Processes, error) {
},
})
// Create satellites making the first satellite bootstrap
// Create satellites making all satellites wait for bootstrap to start
var satellites []*Process
for i := 0; i < flags.SatelliteCount; i++ {
process := processes.New(Info{
@ -198,7 +198,7 @@ func newNetwork(flags *Flags) (*Processes, error) {
process := processes.New(Info{
Name: fmt.Sprintf("storagenode/%d", i),
Executable: "storagenode",
Directory: filepath.Join(configDir, "storage", fmt.Sprint(i)),
Directory: filepath.Join(configDir, "storagenode", fmt.Sprint(i)),
Address: net.JoinHostPort(host, strconv.Itoa(storageNodePort+i)),
})