Skip to content

Commit

Permalink
problem: mempool doesn't look too good
Browse files Browse the repository at this point in the history
  • Loading branch information
gsovereignty committed Oct 13, 2023
1 parent 9605d30 commit a57132d
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions src/routes/mempool/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,16 @@
}
}) as event}
{#if unixTimeNow() - event.created_at < 86400}
<Row>
<Column>
<Tile style="margin:1px;">
<Row><Column max={2} lg={2} sm={1}>
<Rocket />
</Column><Column>
<!-- <Avatar ndk={$ndk} pubkey={rocket.CreatedBy} /> -->
<h6>{event.id.substring(0, 8)}...</h6>
<p>Kind: {event.kind}</p>
<p>{descriptionOfKind(event.kind)}</p>
<p>Created {unixTimeNow() - event.created_at} seconds ago</p>
<a href="{base}/eventviewer/{event.id}">More...</a>
</Column></Row>

<a href="{base}/eventviewer/{event.id}">[{event.id.substring(0, 8)}]</a>
<p>Kind: {event.kind}</p>
<p>{descriptionOfKind(event.kind)}</p>
<p>Created {unixTimeNow() - event.created_at} seconds ago</p>
</Tile>
</Column>
</Row>
{/if}
{/each}
</Row>
Expand Down

0 comments on commit a57132d

Please sign in to comment.