From 9b70a552204f10cab576c0fcb6b1debef8042531 Mon Sep 17 00:00:00 2001
From: donne1226 <503124742@qq.com>
Date: Sun, 20 Mar 2022 11:12:52 +0800
Subject: [PATCH] fix staking table changes

---
 src/views/Staking.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/Staking.vue b/src/views/Staking.vue
index b72748ab..50fe786a 100644
--- a/src/views/Staking.vue
+++ b/src/views/Staking.vue
@@ -318,7 +318,7 @@ export default {
     list() {
       return this.validators.map(x => {
         const xh = x
-        const change = this.changes[x.consensus_pubkey.value]
+        const change = this.changes[x.consensus_pubkey.key]
         if (change) {
           xh.changes = change.latest - change.previous
         }