diff --git a/src/modules/[chain]/consensus/index.vue b/src/modules/[chain]/consensus/index.vue index 15ec015b..6e55dbb0 100644 --- a/src/modules/[chain]/consensus/index.vue +++ b/src/modules/[chain]/consensus/index.vue @@ -26,15 +26,13 @@ let positions = ref([]); let validatorsData = ref([] as any); onMounted(async () => { // stakingStore.init(); - validatorsData.value = await stakingStore.fetchAcitveValdiators(); - console.log(validatorsData.value, 'data'); rpc.value = rpcList.value[0].address + '/consensus_state'; fetchPosition(); update(); timer = setInterval(() => { update(); - }, 60000000); + }, 6000); }); onUnmounted(() => { timer = null;