Skip to content

Commit

Permalink
Merge pull request ethereum#28 from allnil/fix/get-balance-get-sessio…
Browse files Browse the repository at this point in the history
…n-call

fix: getSession call needs one more param in GetBalance
  • Loading branch information
ferranbt committed Mar 28, 2024
2 parents 3d1bbf1 + 1da3776 commit 762350c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suave/builder/session_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
builder, err := s.getSession(sessionId)
builder, err := s.getSession(sessionId, false)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 762350c

Please sign in to comment.