Account represents an Ethereum account at a particular block.
| 79 | |
| 80 | // Account represents an Ethereum account at a particular block. |
| 81 | type Account struct { |
| 82 | r *Resolver |
| 83 | address common.Address |
| 84 | blockNrOrHash rpc.BlockNumberOrHash |
| 85 | } |
| 86 | |
| 87 | // getState fetches the StateDB object for an account. |
| 88 | func (a *Account) getState(ctx context.Context) (*state.StateDB, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected