import key algs in wallet

This commit is contained in:
Łukasz Magiera 2020-02-06 20:56:35 +01:00
parent 1d0d429435
commit 3d3c1dbbb4
2 changed files with 6 additions and 4 deletions

View File

@ -10,6 +10,10 @@ import (
"golang.org/x/xerrors"
"github.com/filecoin-project/go-address"
_ "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/lib/sigs"
)

View File

@ -1,15 +1,12 @@
package main
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
"encoding/json"
sectorbuilder "github.com/filecoin-project/go-sectorbuilder"
_ "github.com/filecoin-project/lotus/lib/sigs/bls"
_ "github.com/filecoin-project/lotus/lib/sigs/secp"
"github.com/ipfs/go-datastore"
"github.com/ipfs/go-datastore/namespace"
@ -20,6 +17,7 @@ import (
"gopkg.in/urfave/cli.v2"
"github.com/filecoin-project/go-address"
"github.com/filecoin-project/lotus/build"
"github.com/filecoin-project/lotus/cmd/lotus-seed/seed"
"github.com/filecoin-project/lotus/genesis"