good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit e792adb1 authored by Willian Mitsuda's avatar Willian Mitsuda Committed by GitHub
Browse files

Fix error msg params (#4357)

parent 457e0434
No related branches found
No related tags found
No related merge requests found
......@@ -468,7 +468,7 @@ func (r Receipts) DeriveFields(hash common.Hash, number uint64, txs Transactions
return fmt.Errorf("transaction and receipt count mismatch, tx count = %d, receipts count = %d", len(txs), len(r))
}
if len(senders) != len(txs) {
return fmt.Errorf("transaction and senders count mismatch, tx count = %d, receipts count = %d", len(txs), len(r))
return fmt.Errorf("transaction and senders count mismatch, tx count = %d, senders count = %d", len(txs), len(senders))
}
for i := 0; i < len(r); i++ {
// The transaction type and hash can be retrieved from the transaction itself
......
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