Update specs-actors, cbor-gen, and go-address

This commit is contained in:
Steven Allen
2020-08-12 10:32:39 -07:00
parent 9135a5d048
commit 9248e5a572
16 changed files with 376 additions and 342 deletions
+1 -2
View File
@@ -3,7 +3,6 @@ package full
import (
"context"
"github.com/filecoin-project/specs-actors/actors/abi/big"
init_ "github.com/filecoin-project/specs-actors/actors/builtin/init"
"github.com/filecoin-project/lotus/lib/sigs"
@@ -44,7 +43,7 @@ func (a *WalletAPI) WalletBalance(ctx context.Context, addr address.Address) (ty
return nil
}))
if xerrors.Is(err, init_.ErrAddressNotFound) {
if xerrors.Is(err, types.ErrActorNotFound) {
return big.Zero(), nil
} else {
return bal, err