-
{t`Block filling`}
+
{t`BLOCK FILLING`}
{formatPercentage(
weightPercentage,
diff --git a/client/src/views/transactions.js b/client/src/views/transactions.js
index 3d4f90ea..b191098b 100644
--- a/client/src/views/transactions.js
+++ b/client/src/views/transactions.js
@@ -76,7 +76,7 @@ export const transactions = (txs, viewMore, { t, ...S }) => (
{txs && viewMore ? (
- {t`See more`}
+ {t`See More`}
diff --git a/lang/strings.txt b/lang/strings.txt
index e82c5566..ade01bcd 100644
--- a/lang/strings.txt
+++ b/lang/strings.txt
@@ -26,7 +26,7 @@ Block #%s: %s
Block Signatures
Block timestamp
Block Weight
-Block filling
+BLOCK FILLING
Block weight divided by four.
Broadcast raw transaction (hex)
Broadcast transaction
@@ -156,6 +156,7 @@ scriptPubKey (hex)
scriptSig (asm)
scriptSig (hex)
Search for block height, hash, transaction, or address
+See More
SegWit fee savings
Sending exact amounts (with no change) is an indication the bitcoins likely didn't change hands.
Sending to a different script type
@@ -210,6 +211,7 @@ Unknown
unknown (%s from tip)
Unnecessary input heuristic
Unspent
+Unique identifier for this block.
Using round payment amounts gives an indication of which output is the payment and which is the change. Padding payment amounts to use all available precision resolves this issue.
Value
Value commitment
diff --git a/test/block-details-card.test.js b/test/block-details-card.test.js
index c00e8257..eb4e5533 100644
--- a/test/block-details-card.test.js
+++ b/test/block-details-card.test.js
@@ -79,7 +79,7 @@ test("passes block detail copy through localization", () => {
"Block hash",
"Block Weight",
"Block is %s% full",
- "Block filling",
+ "BLOCK FILLING",
"Block utilization unavailable",
"Block weight divided by four.",
"Commitment to all transactions included in the block.",
@@ -93,6 +93,7 @@ test("passes block detail copy through localization", () => {
"Time Since Last Block",
"Time elapsed between this block and the previous block.",
"Transactions",
+ "Unique identifier for this block.",
"Version",
"Version bits recorded in the block header.",
"Virtual size",
@@ -221,7 +222,7 @@ test("uses the template limit for pending block utilization", () => {
html,
/aria-label="Block is 50% full"/,
);
- assert.match(html, />Block filling);
+ assert.match(html, />BLOCK FILLING);
});
test("counts down from the last block to the configured expected interval", () => {
@@ -268,7 +269,7 @@ test("passes pending block copy through localization", () => {
"Next Block",
"Details",
"SIZE",
- "Block filling",
+ "BLOCK FILLING",
"Transactions",
"Block Weight",
"Pending Transactions",
diff --git a/www/style.css b/www/style.css
index b36f63d8..82cd233c 100644
--- a/www/style.css
+++ b/www/style.css
@@ -5025,7 +5025,7 @@ a.back-link img{
.expanded-pending-block-details {
display: flex;
- margin-top: 32px;
+ margin-top: 16px;
}
.expanded-pending-block-grid-container {
@@ -5317,23 +5317,8 @@ a.back-link img{
background-color: var(--surface-primary-color);
}
-.blocks-history-divider {
- display: block;
- width: 100%;
- height: 4px;
- margin-top: 20px;
- overflow: visible;
-}
-
-.blocks-history-divider line {
- stroke: var(--foreground-muted);
- stroke-width: 2;
- stroke-dasharray: 8 8;
- stroke-linecap: round;
-}
-
.blocks-section-title {
- margin: 20px 0 0;
+ margin-top: 24px;
color: var(--foreground-muted);
font-family: "Rigid Square", sans-serif;
font-size: 14px;
@@ -5467,7 +5452,6 @@ a.back-link img{
}
.expanded-pending-block-grid-container {
- margin: 16px 0;
width: 100%;
}