From bc15d5234e68fd2fd8c2952da95c548e50e3b5e4 Mon Sep 17 00:00:00 2001 From: Travis Person Date: Tue, 11 Feb 2020 01:04:20 +0000 Subject: [PATCH] lotus-shed: add back support for bls and secp after sig changes --- cmd/lotus-shed/keyinfo.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/lotus-shed/keyinfo.go b/cmd/lotus-shed/keyinfo.go index d3716d576..f1a42894a 100644 --- a/cmd/lotus-shed/keyinfo.go +++ b/cmd/lotus-shed/keyinfo.go @@ -11,6 +11,9 @@ import ( "gopkg.in/urfave/cli.v2" + _ "github.com/filecoin-project/lotus/lib/sigs/bls" + _ "github.com/filecoin-project/lotus/lib/sigs/secp" + "github.com/filecoin-project/lotus/chain/types" "github.com/filecoin-project/lotus/chain/wallet" )