client: fixed typo on error statement

This commit is contained in:
lunar-mining
2021-10-20 18:03:38 +02:00
parent 2b3a62dc1c
commit 32888651bc

View File

@@ -509,7 +509,7 @@ impl std::fmt::Display for ClientFailed {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
ClientFailed::NotEnoughValue(i) => {
write!(f, "There is no enough value {}", i)
write!(f, "There is not enough value {}", i)
}
ClientFailed::InvalidAddress(i) => {
write!(f, "Invalid Address {}", i)