Merge pull request #1148 from filecoin-project/feat/msig-integration

DO NOT MERGE: Feat/msig integration
This commit is contained in:
Łukasz Magiera
2020-02-04 07:19:49 +01:00
committed by GitHub
21 changed files with 365 additions and 1307 deletions
+6
View File
@@ -18,6 +18,12 @@ type apiBStore struct {
api ChainIO
}
func NewAPIBlockstore(cio ChainIO) blockstore.Blockstore {
return &apiBStore{
api: cio,
}
}
func (a *apiBStore) DeleteBlock(cid.Cid) error {
return xerrors.New("not supported")
}