From 23b7cf305f4070c77fa78f8c9a8dfe3735406ed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Tue, 29 Oct 2019 14:10:53 +0100 Subject: [PATCH] fountain: Default to 1GiB sectors --- cmd/lotus-fountain/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lotus-fountain/main.go b/cmd/lotus-fountain/main.go index 705c7d148..3e2e0a772 100644 --- a/cmd/lotus-fountain/main.go +++ b/cmd/lotus-fountain/main.go @@ -254,7 +254,7 @@ func (h *handler) mkminer(w http.ResponseWriter, r *http.Request) { params, err := actors.SerializeParams(&actors.CreateStorageMinerParams{ Owner: owner, Worker: owner, - SectorSize: build.SectorSizes[0], // TODO: dropdown allowing selection + SectorSize: 1 << 30, // build.SectorSizes[0], // TODO: dropdown allowing selection (1GiB for now) PeerID: peer.ID("SETME"), }) if err != nil {