good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit ef180848 authored by Enrique Jose  Avila Asapche's avatar Enrique Jose Avila Asapche Committed by GitHub
Browse files

Transaction is nil (#3273)

* checks if txn is nil

* returning nil, nil
parent f1418036
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,12 @@ func (api *APIImpl) GetTransactionByHash(ctx context.Context, hash common.Hash)
if err != nil {
return nil, err
}
// if no transactiion was found in the txpool then we return nil and an error warning that we didn't find the transaction by the hash
if txn == nil {
return nil, nil
}
return newRPCPendingTransaction(txn, curHeader, chainConfig), nil
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment