From 841a515b3edb3c276ff617cc20c486b7f6bf8bc0 Mon Sep 17 00:00:00 2001 From: Ordinarius <137325073+ordinariusprof@users.noreply.github.com> Date: Tue, 2 Apr 2024 09:41:45 -0700 Subject: [PATCH 1/2] fix leftover etch --- src/subcommand/wallet/mint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/subcommand/wallet/mint.rs b/src/subcommand/wallet/mint.rs index 069c108bf2..5d1d9fb55a 100644 --- a/src/subcommand/wallet/mint.rs +++ b/src/subcommand/wallet/mint.rs @@ -19,7 +19,7 @@ impl Mint { pub(crate) fn run(self, wallet: Wallet) -> SubcommandResult { ensure!( wallet.has_rune_index(), - "`ord wallet etch` requires index created with `--index-runes` flag", + "`ord wallet mint` requires index created with `--index-runes` flag", ); let rune = self.rune.rune; From 4290104b33081ef7040febaabe06e88bb94501f6 Mon Sep 17 00:00:00 2001 From: raphjaph Date: Sun, 7 Apr 2024 12:17:10 -0400 Subject: [PATCH 2/2] Amend --- tests/wallet/mint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wallet/mint.rs b/tests/wallet/mint.rs index 74b1f01297..f380eae224 100644 --- a/tests/wallet/mint.rs +++ b/tests/wallet/mint.rs @@ -157,7 +157,7 @@ fn minting_rune_with_no_rune_index_fails() { .core(&core) .ord(&ord) .expected_exit_code(1) - .expected_stderr("error: `ord wallet etch` requires index created with `--index-runes` flag\n") + .expected_stderr("error: `ord wallet mint` requires index created with `--index-runes` flag\n") .run_and_extract_stdout(); }