Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion netdeploy/remote/deployedNetwork.go
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ func extractPublicPort(address string) (port int, err error) {
func computeRootStorage(nodeCount, relayCount int) int {
// For now, we'll just use root storage -- assume short-lived instances
// 10 per node should be good for a week (add relayCount * 0 so param is used)
minGB := 10 + nodeCount*10 + (relayCount * 50)
minGB := 20 + (nodeCount * 10) + (relayCount * 50)
return minGB
}

Expand Down