Skip to content

Commit 3e68b09

Browse files
authored
Merge branch 'master' into master
2 parents 15e6a75 + e4aff8b commit 3e68b09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/subcommand/wallet/mint.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl Mint {
1919
pub(crate) fn run(self, wallet: Wallet) -> SubcommandResult {
2020
ensure!(
2121
wallet.has_rune_index(),
22-
"`ord wallet etch` requires index created with `--index-runes` flag",
22+
"`ord wallet mint` requires index created with `--index-runes` flag",
2323
);
2424

2525
let rune = self.rune.rune;

tests/wallet/mint.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ fn minting_rune_with_no_rune_index_fails() {
157157
.core(&core)
158158
.ord(&ord)
159159
.expected_exit_code(1)
160-
.expected_stderr("error: `ord wallet etch` requires index created with `--index-runes` flag\n")
160+
.expected_stderr("error: `ord wallet mint` requires index created with `--index-runes` flag\n")
161161
.run_and_extract_stdout();
162162
}
163163

0 commit comments

Comments
 (0)