mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
fix: getSession call needs one more param
This commit is contained in:
parent
3d1bbf184e
commit
1da3776555
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue