Skip to content

Commit

Permalink
Fix misspelling of "discrepancy" in coinbase/rosetta-cli files
Browse files Browse the repository at this point in the history
Fixed the misspelling in several files.
  • Loading branch information
racbc committed Nov 16, 2021
1 parent 5da2d00 commit b6b506e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/configuration/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
"interesting_accounts": "",
"reconciliation_disabled": false,
"reconciliation_drain_disabled": false,
"inactive_discrepency_search_disabled": false,
"inactive_discrepancy_search_disabled": false,
"balance_tracking_disabled": false,
"coin_tracking_disabled": false,
"status_port": 9090,
"results_output_file": "",
"pruning_disabled": false,
"initial_balance_fetch_disabled": false
}
}
}
2 changes: 1 addition & 1 deletion examples/configuration/simple.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"data": {
"historical_balance_enabled": false,
"reconciliation_disabled": true,
"inactive_discrepency_search_disabled": true,
"inactive_discrepancy_search_disabled": true,
"balance_tracking_disabled": true,
"end_conditions": {
"tip": true
Expand Down
4 changes: 2 additions & 2 deletions pkg/tester/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -931,8 +931,8 @@ func (t *DataTester) HandleErr(err error, sigListeners *[]context.CancelFunc) er
)
}

if t.config.Data.InactiveDiscrepencySearchDisabled {
color.Yellow("Search for inactive reconciliation discrepency is disabled")
if t.config.Data.InactiveDiscrepancySearchDisabled {
color.Yellow("Search for inactive reconciliation discrepancy is disabled")
return results.ExitData(
t.config,
t.counterStorage,
Expand Down

0 comments on commit b6b506e

Please sign in to comment.