Merge pull request #10451 from filecoin-project/asr/fix-msig-vested

gateway: fix: drop overzealous guard on MsigGetVested
This commit is contained in:
Aayush Rajasekaran 2023-03-13 14:33:50 -04:00 committed by GitHub
commit afa36d3f62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -217,9 +217,6 @@ func (gw *Node) MsigGetVested(ctx context.Context, addr address.Address, start t
if err := gw.limit(ctx, walletRateLimitTokens); err != nil {
return types.BigInt{}, err
}
if err := gw.checkTipsetKey(ctx, start); err != nil {
return types.NewInt(0), err
}
if err := gw.checkTipsetKey(ctx, end); err != nil {
return types.NewInt(0), err
}