lotus/cmd/lotus-seal-worker/rpc.go

22 lines
394 B
Go
Raw Normal View History

2020-03-11 01:57:52 +00:00
package main
import (
2020-03-13 01:37:38 +00:00
"context"
2020-03-11 01:57:52 +00:00
"github.com/filecoin-project/specs-storage/storage"
2020-03-23 11:40:02 +00:00
2020-08-17 13:39:33 +00:00
sectorstorage "github.com/filecoin-project/lotus/extern/sector-storage"
2020-03-23 11:40:02 +00:00
"github.com/filecoin-project/lotus/build"
2020-03-11 21:23:16 +00:00
)
2020-03-11 01:57:52 +00:00
2020-03-24 23:37:40 +00:00
type worker struct {
*sectorstorage.LocalWorker
2020-03-11 01:57:52 +00:00
}
2020-03-13 01:37:38 +00:00
func (w *worker) Version(context.Context) (build.Version, error) {
return build.APIVersion, nil
}
2020-03-11 01:57:52 +00:00
var _ storage.Sealer = &worker{}