diff --git a/templates/status.html b/templates/status.html
index e403777dc3..55599f0c93 100644
--- a/templates/status.html
+++ b/templates/status.html
@@ -47,7 +47,7 @@
Status
%% if !env!("GIT_COMMIT").is_empty() {
git commit
-
+
{{ env!("GIT_COMMIT") }}
diff --git a/templates/transaction.html b/templates/transaction.html
index d855246fcb..5815151757 100644
--- a/templates/transaction.html
+++ b/templates/transaction.html
@@ -31,7 +31,7 @@
{{"Output".tally(self.transaction.output.len())}}
value{{ output.value.to_sat() }}
script pubkey{{ output.script_pubkey.to_asm_string() }}
%% if let Ok(address) = self.chain.address_from_script(&output.script_pubkey) {
-
address{{ address }}
+
address{{ address }}
%% }
diff --git a/tests/server.rs b/tests/server.rs
index d92e8104d8..415b3f1624 100644
--- a/tests/server.rs
+++ b/tests/server.rs
@@ -250,7 +250,7 @@ fn inscription_page() {
id
{inscription}
address
-
bc1.*
+
bc1.*
value
10000
preview
@@ -276,7 +276,7 @@ fn inscription_page() {
offset
0
ethereum teleburn address
-
{ethereum_teleburn_address}
+
{ethereum_teleburn_address}
.*",
),
);
@@ -380,7 +380,7 @@ fn inscription_page_after_send() {
ord.assert_response_regex(
format!("/inscription/{inscription}"),
format!(
- r".*
Inscription 0
.*
address\s*
bc1qcqgs2pps4u4yedfyl5pysdjjncs8et5utseepv.*
location\s*
{txid}:0:0.*",
+ r".*
Inscription 0
.*
address\s*
bc1qcqgs2pps4u4yedfyl5pysdjjncs8et5utseepv.*
location\s*
{txid}:0:0.*",
),
)
}
diff --git a/tests/wallet/batch_command.rs b/tests/wallet/batch_command.rs
index 34c9ac0df7..6e341086cc 100644
--- a/tests/wallet/batch_command.rs
+++ b/tests/wallet/batch_command.rs
@@ -682,7 +682,7 @@ inscriptions:
format!("/inscription/{}", output.inscriptions[0].id),
".*
address
-
bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4.*",
+
bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4.*",
);
ord.assert_response_regex(
@@ -690,7 +690,7 @@ inscriptions:
format!(
".*
address
-
{0}.*",
+
{0}.*",
core.state().change_addresses[0],
),
);
@@ -699,7 +699,7 @@ inscriptions:
format!("/inscription/{}", output.inscriptions[2].id),
".*
address
-
bc1pxwww0ct9ue7e8tdnlmug5m2tamfn7q06sahstg39ys4c9f3340qqxrdu9k.*",
+
bc1pxwww0ct9ue7e8tdnlmug5m2tamfn7q06sahstg39ys4c9f3340qqxrdu9k.*",
);
}
diff --git a/tests/wallet/send.rs b/tests/wallet/send.rs
index d139c89b5e..dca0dc00ea 100644
--- a/tests/wallet/send.rs
+++ b/tests/wallet/send.rs
@@ -153,7 +153,7 @@ fn send_inscription_by_sat() {
ord.assert_response_regex(
format!("/inscription/{inscription}"),
format!(
- ".*
Inscription 0
.*
address.*
{address}.*
location.*
{send_txid}:0:0.*",
+ ".*
Inscription 0
.*
address.*
{address}.*
location.*
{send_txid}:0:0.*",
),
);
}