Compare commits
1 Commits
d3c20789e9
...
60c0881d5e
| Author | SHA1 | Date | |
|---|---|---|---|
| 60c0881d5e |
@ -13,6 +13,12 @@ const loading = ref(false)
|
|||||||
|
|
||||||
const utxosList = computed(() => [
|
const utxosList = computed(() => [
|
||||||
...(neptuneStore.getUtxos || []),
|
...(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))
|
const inUseUtxosCount = computed(() => (utxosList.value?.length ? utxosList.value.length : 0))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user