Support debug_traceCall API (#192)

* Implement debug_traceCall API

* Use API implementation from geth with custom backend

* Update refs in GitHub workflow
This commit was merged in pull request #192.
This commit is contained in:
prathamesh0
2022-09-21 17:15:03 +05:30
committed by GitHub
parent 4d99ecdee3
commit 2c03c8cbd0
10 changed files with 85 additions and 13 deletions
+1 -1
View File
@@ -838,7 +838,7 @@ func (b *Block) Call(ctx context.Context, args struct {
return nil, err
}
}
result, err := eth.DoCall(ctx, b.backend, args.Data, *b.numberOrHash, nil, 5*time.Second, b.backend.RPCGasCap().Uint64())
result, err := eth.DoCall(ctx, b.backend, args.Data, *b.numberOrHash, nil, 5*time.Second, b.backend.RPCGasCap())
if err != nil {
return nil, err
}