forked from cerc-io/plugeth
graphql: revert storage access regression (#27007)
This commit is contained in:
parent
949cee2fe3
commit
62fb7d3f85
@ -81,26 +81,12 @@ type Account struct {
|
|||||||
r *Resolver
|
r *Resolver
|
||||||
address common.Address
|
address common.Address
|
||||||
blockNrOrHash rpc.BlockNumberOrHash
|
blockNrOrHash rpc.BlockNumberOrHash
|
||||||
state *state.StateDB
|
|
||||||
mu sync.Mutex
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// getState fetches the StateDB object for an account.
|
// getState fetches the StateDB object for an account.
|
||||||
func (a *Account) getState(ctx context.Context) (*state.StateDB, error) {
|
func (a *Account) getState(ctx context.Context) (*state.StateDB, error) {
|
||||||
a.mu.Lock()
|
|
||||||
defer a.mu.Unlock()
|
|
||||||
if a.state != nil {
|
|
||||||
return a.state, nil
|
|
||||||
}
|
|
||||||
state, _, err := a.r.backend.StateAndHeaderByNumberOrHash(ctx, a.blockNrOrHash)
|
state, _, err := a.r.backend.StateAndHeaderByNumberOrHash(ctx, a.blockNrOrHash)
|
||||||
if err != nil {
|
return state, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
a.state = state
|
|
||||||
// Cache the state object. This is done so that concurrent resolvers
|
|
||||||
// don't have to fetch the object from DB individually.
|
|
||||||
a.state.GetOrNewStateObject(a.address)
|
|
||||||
return a.state, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *Account) Address(ctx context.Context) (common.Address, error) {
|
func (a *Account) Address(ctx context.Context) (common.Address, error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user