Skip to content

Commit

Permalink
parser/coin: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
dspicher committed Aug 8, 2023
1 parent 8023da2 commit 7869fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blockchain/parser/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ impl FromStr for CoinType {
"noteblockchain" => Ok(CoinType::from(NoteBlockchain)),
n => {
let e = OpError::new(OpErrorKind::InvalidArgsError)
.join_msg(&format!("The is no impl for `{}`!", n));
.join_msg(&format!("There is no impl for `{}`!", n));
Err(e)
}
}
Expand Down

0 comments on commit 7869fe9

Please sign in to comment.