mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-20 23:09:27 +00:00
ethclient/gethclient: use common.Hash to debug_traceTransaction (#32404)
This commit is contained in:
parent
d99143d7f5
commit
dffa1f5104
1 changed files with 1 additions and 1 deletions
|
|
@ -209,7 +209,7 @@ func (ec *Client) SubscribePendingTransactions(ctx context.Context, ch chan<- co
|
||||||
// and returns them as a JSON object.
|
// and returns them as a JSON object.
|
||||||
func (ec *Client) TraceTransaction(ctx context.Context, hash common.Hash, config *tracers.TraceConfig) (any, error) {
|
func (ec *Client) TraceTransaction(ctx context.Context, hash common.Hash, config *tracers.TraceConfig) (any, error) {
|
||||||
var result any
|
var result any
|
||||||
err := ec.c.CallContext(ctx, &result, "debug_traceTransaction", hash.Hex(), config)
|
err := ec.c.CallContext(ctx, &result, "debug_traceTransaction", hash, config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue