Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve error handling in state package #3820

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions state/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package state

import (
"context"
"fmt"
"math/big"
"sync"

Expand Down Expand Up @@ -102,7 +103,11 @@ func (s *State) GetBalance(ctx context.Context, address common.Address, root com
if s.tree == nil {
return nil, ErrStateTreeNil
}
return s.tree.GetBalance(ctx, address, root.Bytes())
balance, err := s.tree.GetBalance(ctx, address, root.Bytes())
if err != nil {
return nil, fmt.Errorf("failed to get balance from state tree: %w", err)
}
return balance, nil
}

// GetCode from a given address
Expand Down Expand Up @@ -182,7 +187,7 @@ func (s *State) GetStoredFlushID(ctx context.Context) (uint64, string, error) {
}
res, err := s.executorClient.GetFlushStatus(ctx, &emptypb.Empty{})
if err != nil {
return 0, "", err
return 0, "", fmt.Errorf("failed to get flush status from executor: %w", err)
}

return res.StoredFlushId, res.ProverId, nil
Expand Down