Skip to content

Commit 11f2575

Browse files
authored
Merge pull request #1 from alpergundogdu/brc20
Add pending transactions back
2 parents cfb081c + 4b6da1d commit 11f2575

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

ui/pages/Transactions.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,20 @@ const Transactions = () => {
105105
socketInfoAlert={ socketAlert }
106106
top={ TABS_HEIGHT }
107107
/> },
108+
{
109+
id: 'pending',
110+
title: 'Pending',
111+
component: (
112+
<TxsWithFrontendSorting
113+
query={ txsPendingQuery }
114+
showBlockInfo={ false }
115+
showSocketInfo={ txsPendingQuery.pagination.page === 1 }
116+
socketInfoNum={ num }
117+
socketInfoAlert={ socketAlert }
118+
top={ TABS_HEIGHT }
119+
/>
120+
),
121+
},
108122
config.features.dataAvailability.isEnabled && {
109123
id: 'blob_txs',
110124
title: 'Blob txns',

ui/stats/NumberWidgetsList.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const UNITS_WITHOUT_SPACE = [ 's' ];
1212
const hiddenCounters = [
1313
'transactions fees',
1414
'transaction fee',
15-
'pending transactions',
1615
];
1716
const NumberWidgetsList = () => {
1817
const { data, isPlaceholderData, isError } = useApiQuery('stats_counters', {

0 commit comments

Comments
 (0)