fix: getSession call needs one more param

This commit is contained in:
n.medvedev 2024-03-20 16:31:46 +00:00
parent 3d1bbf184e
commit 1da3776555

View file

@ -197,7 +197,7 @@ func (s *SessionManager) Bid(sessionId string, blsPubKey phase0.BLSPubKey) (*api
} }
func (s *SessionManager) GetBalance(sessionId string, addr common.Address) (*big.Int, error) { func (s *SessionManager) GetBalance(sessionId string, addr common.Address) (*big.Int, error) {
builder, err := s.getSession(sessionId) builder, err := s.getSession(sessionId, false)
if err != nil { if err != nil {
return nil, err return nil, err
} }