Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions client/src/views/nav-toggle.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ export default () =>
<h4 className="menu-title font-h5">Other Products</h4>
<ul className="font-p3">
<li><a href="https://blockstream.com/liquid/" target="_blank">Liquid Network</a></li>
<li><a href="https://blockstream.com/mining/" target="_blank">Blockstream Mining</a></li>
<li><a href="https://blockstream.com/amp/" target="_blank">Blockstream AMP</a></li>
<li><a href="https://blockstream.com/satellite/" target="_blank">Blockstream Satellite</a></li>
<li><a href="https://blockstream.com/cryptofeed/" target="_blank">Crypto Data Feed</a></li>
<li><a href="https://blockstream.com/lightning/" target="_blank">Core Lightning</a></li>
<li><a href="https://blockstream.com/elements/" target="_blank">Elements</a></li>
Expand Down
10 changes: 0 additions & 10 deletions client/src/views/pending-block-details-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,16 +402,6 @@ const PendingBlockDetailsCard = ({
) : (
"-"
)}
<StatusBadge variant={blockTemplate ? "success" : undefined}>
{blockTemplate ? <StatusDot /> : null}
<span>
{blockTemplate
? process.env.IS_ELEMENTS
? t`Building...`
: t`Mining...`
: t`Updating...`}
</span>
</StatusBadge>
</p>
<button
aria-expanded={detailsOpen ? "true" : "false"}
Expand Down
1 change: 0 additions & 1 deletion lang/strings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ Low
Lock time
ltr
Mempool
Mining...
Merkle root
N/A
New asset
Expand Down
7 changes: 1 addition & 6 deletions test/block-details-card.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,17 +177,13 @@ test("shows the pending transaction live badge only with template data", () => {

assert.doesNotMatch(unavailableHtml, />Live</);
assert.match(liveHtml, />Live</);
assert.match(
liveHtml,
process.env.IS_ELEMENTS ? />Building\.\.\.</ : />Mining\.\.\.</,
);
assert.equal(
(unavailableHtml.match(/class="confirmation-status-dot"/g) || []).length,
0,
);
assert.equal(
(liveHtml.match(/class="confirmation-status-dot"/g) || []).length,
2,
1,
);
});

Expand Down Expand Up @@ -270,7 +266,6 @@ test("passes pending block copy through localization", () => {

[
"Next Block",
process.env.IS_ELEMENTS ? "Building..." : "Mining...",
"Details",
"SIZE",
"Block filling",
Expand Down