Skip to content

Commit e54c374

Browse files
authored
fix(micro-blocks): be able to load older/newer transactions (#1147)
1 parent 4e686a2 commit e54c374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/MicroblockTransactionsPanel.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ const selectedTxType = ref(TX_TYPES_OPTIONS[0])
2828
const pageIndex = ref(1)
2929
3030
function loadPrevTransactions() {
31-
fetchMicroblockTransactions({ queryParameters: transactions.value.prev.substring(3) })
31+
fetchMicroblockTransactions({ queryParameters: transactions.value.prev })
3232
}
3333
3434
function loadNextTransactions() {
35-
fetchMicroblockTransactions({ queryParameters: transactions.value.next.substring(3) })
35+
fetchMicroblockTransactions({ queryParameters: transactions.value.next })
3636
}
3737
3838
async function loadTransactions() {

0 commit comments

Comments
 (0)