Correct double-counting in StateMinerAvailableBalance

This commit is contained in:
Aayush Rajasekaran 2020-06-07 20:46:19 -04:00
parent 9e2603c1bf
commit 741825a04e

View File

@ -794,9 +794,7 @@ func (a *StateAPI) StateMinerAvailableBalance(ctx context.Context, maddr address
return types.EmptyInt, err return types.EmptyInt, err
} }
// TODO: !!!! Use method that doesnt trigger additional state mutations, this is going to cause lots of objects to be created and written to disk vested, err := st.CheckVestedFunds(as, ts.Height())
log.Warnf("calling inefficient unlock vested funds method, fixme")
vested, err := st.UnlockVestedFunds(as, ts.Height())
if err != nil { if err != nil {
return types.EmptyInt, err return types.EmptyInt, err
} }