Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/state-manager/TransactionRepair.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class TransactionRepair {
//let requestObjectCount = 0
//let requestsMade = 0
//let responseFails = 0
//let dataRecieved = 0
//let dataReceived = 0
//let dataApplied = 0
//let failedHash = 0
//let numUpToDateAccounts = 0
Expand All @@ -98,7 +98,7 @@ class TransactionRepair {
requestObjectCount: 0,
requestsMade: 0,
responseFails: 0,
dataRecieved: 0,
dataReceived: 0,
dataApplied: 0,
failedHash: 0,
numUpToDateAccounts: 0,
Expand Down Expand Up @@ -624,7 +624,7 @@ class TransactionRepair {
const accountIdsReturned = []
for (const data of result.stateList) {
try {
stats.dataRecieved++
stats.dataReceived++
this.profiler.profileSectionStart('repair_saving_account_data')
nestedCountersInstance.countEvent('repair1', 'saving')
// let shortKey = utils.stringifyReduce(data.accountId)
Expand Down
Loading