refactor: 101125/remove_mock_data

This commit is contained in:
NguyenAnhQuan 2025-11-10 11:27:35 +07:00
parent d9e7ffde26
commit 57ea476e13

View File

@ -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(() => {