lotus/storage/sealmgr/advmgr/storage_local.go
2020-03-11 06:49:17 +01:00

11 lines
200 B
Go

package advmgr
import (
"github.com/filecoin-project/lotus/node/config"
)
type LocalStorage interface {
GetStorage() (config.StorageConfig, error)
SetStorage(func(*config.StorageConfig)) error
}