mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 13:07:17 +00:00
Fix error msg params (#4357)
This commit is contained in:
parent
457e043401
commit
e792adb131
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user