From e69b05693ab56cecbcf4e95cf5d7e318a7323646 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Thu, 9 Mar 2023 16:30:58 +0000 Subject: [PATCH] switch avg and routing score table positions --- .../src/components/MixNodes/Economics/Columns.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/explorer/src/components/MixNodes/Economics/Columns.ts b/explorer/src/components/MixNodes/Economics/Columns.ts index c3ac85baaf..b2115c0749 100644 --- a/explorer/src/components/MixNodes/Economics/Columns.ts +++ b/explorer/src/components/MixNodes/Economics/Columns.ts @@ -36,16 +36,16 @@ export const EconomicsInfoColumns: ColumnsType[] = [ tooltipInfo: 'Monthly operational cost of running this node. This cost is set by the operator and it influences how the rewards are split between the operator and delegators.', }, - { - field: 'avgUptime', - title: 'Avg. Score', - width: '10%', - tooltipInfo: "Mixnode's average routing score in the last 24 hour", - }, { field: 'nodePerformance', title: 'Routing Score', + width: '10%', tooltipInfo: "Mixnode's most recent score (measured in the last 15 minutes). Routing score is relative to that of the network. Each time a gateway is tested, the test packets have to go through the full path of the network (gateway + 3 nodes). If a node in the path drop packets it will affect the score of the gateway and other nodes in the test.", }, + { + field: 'avgUptime', + title: 'Avg. Score', + tooltipInfo: "Mixnode's average routing score in the last 24 hour", + }, ];