Remove preview from MintCommand explorer link (#89)

This commit is contained in:
Slava 2023-12-18 16:38:16 +02:00 committed by GitHub
parent 87e84ae90d
commit 974fc460c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ namespace BiblioTech.Commands
private string FormatTransactionLink(string transaction) private string FormatTransactionLink(string transaction)
{ {
var url = $"https://explorer.testnet.codex.storage/tx/{transaction}"; var url = $"https://explorer.testnet.codex.storage/tx/{transaction}";
return $"- [View on block explorer]({url}){Environment.NewLine}Transaction ID - `{transaction}`"; return $"- [View on block explorer](<{url}>){Environment.NewLine}Transaction ID - `{transaction}`";
} }
} }
} }