We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
txnIndex
To not calc txnIndex by read+hash all transactions:
in func (api *APIImpl) GetTransactionReceipt:
func (api *APIImpl) GetTransactionReceipt
block, err := api.blockByNumberWithSenders(ctx, tx, blockNum) if err != nil { return nil, err } if block == nil { return nil, nil // not error, see https://github.com/erigontech/erigon/issues/1645 } var txnIndex uint64 var txn types.Transaction for idx, transaction := range block.Transactions() { if transaction.Hash() == txnHash { txn = transaction txnIndex = uint64(idx) break } }
The text was updated successfully, but these errors were encountered:
JkLondon
Successfully merging a pull request may close this issue.
To not calc txnIndex by read+hash all transactions:
in
func (api *APIImpl) GetTransactionReceipt
:The text was updated successfully, but these errors were encountered: