diff --git a/src/views/Home/components/UTXOTab.vue b/src/views/Home/components/UTXOTab.vue index 636dbdb..5acfec7 100644 --- a/src/views/Home/components/UTXOTab.vue +++ b/src/views/Home/components/UTXOTab.vue @@ -11,15 +11,7 @@ const neptuneStore = useNeptuneStore() const loading = ref(false) -const utxosList = computed(() => [ - ...(neptuneStore.getUtxos || []), - ...Array.from({ length: 18 }, (_, i) => ({ - additionRecord: `additionRecord${i}`, - amount: `${i}.00000000`, - blockHeight: `blockHeight${i}`, - utxoHash: `utxoHash${i}`, - })), -]) +const utxosList = computed(() => (neptuneStore.getUtxos?.length ? neptuneStore.getUtxos : [])) const inUseUtxosCount = computed(() => (utxosList.value?.length ? utxosList.value.length : 0)) const inUseUtxosAmount = computed(() => {