Skip to content

Commit

Permalink
v1.20.1 merge result
Browse files Browse the repository at this point in the history
  • Loading branch information
astudnev committed Mar 9, 2023
1 parent 25deff7 commit abb4949
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions gateway/proxy_fil.go
Original file line number Diff line number Diff line change
Expand Up @@ -480,3 +480,12 @@ func (gw *Node) WalletBalance(ctx context.Context, k address.Address) (types.Big
}
return gw.target.WalletBalance(ctx, k)
}

func (gw *Node) StateMultiGetActor(ctx context.Context, actors []address.Address, tsk types.TipSetKey) ([]*types.Actor, error) {
// TODO: implement me
// Unfortunately, we did not have enough time to investigate.
// We are not sure if this method is necessary.
// But decided to mock it to maintain backward compatibility with releases.
// Otherwise, the node does not satisfy the interface.
panic("StateMultiGetActor: implement me")
}

0 comments on commit abb4949

Please sign in to comment.