From 6c49b10784a4456231b74e211281daec6abbcfe1 Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Sat, 13 Jul 2019 01:24:15 -0600 Subject: [PATCH] Purge remaining uses of Locktower (#5076) automerge --- .../grafana-provisioning/dashboards/testnet-monitor.json | 6 +++--- programs/vote_api/src/vote_state.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/metrics/scripts/grafana-provisioning/dashboards/testnet-monitor.json b/metrics/scripts/grafana-provisioning/dashboards/testnet-monitor.json index e8e15d5c1b..249ea9b556 100644 --- a/metrics/scripts/grafana-provisioning/dashboards/testnet-monitor.json +++ b/metrics/scripts/grafana-provisioning/dashboards/testnet-monitor.json @@ -7025,7 +7025,7 @@ }, "id": 51, "panels": [], - "title": "Locktower Consensus", + "title": "Tower Consensus", "type": "row" }, { @@ -7150,7 +7150,7 @@ "thresholds": [], "timeFrom": null, "timeShift": null, - "title": "Locktower Distance in Latest and Root Slot ($hostid)", + "title": "Tower Distance in Latest and Root Slot ($hostid)", "tooltip": { "shared": true, "sort": 0, @@ -7310,7 +7310,7 @@ "thresholds": [], "timeFrom": null, "timeShift": null, - "title": "Locktower Root Slot ($hostid)", + "title": "Tower Root Slot ($hostid)", "tooltip": { "shared": true, "sort": 0, diff --git a/programs/vote_api/src/vote_state.rs b/programs/vote_api/src/vote_state.rs index cbb8598b5a..093144d96f 100644 --- a/programs/vote_api/src/vote_state.rs +++ b/programs/vote_api/src/vote_state.rs @@ -224,7 +224,7 @@ impl VoteState { self.credits += 1; } - /// "uncheckeds" used by tests, locktower + /// "unchecked" functions used by tests and Tower pub fn process_vote_unchecked(&mut self, vote: &Vote) { self.process_vote(vote, &[(vote.slot, vote.hash)], self.epoch); }