Compare commits

..

1 Commits

Author SHA1 Message Date
60c0881d5e optimize scan UTXO 2025-11-10 21:14:37 +07:00

View File

@ -13,6 +13,12 @@ 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 inUseUtxosCount = computed(() => (utxosList.value?.length ? utxosList.value.length : 0))