Skip to content

Commit

Permalink
match names in output
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored May 2, 2024
1 parent def7d29 commit d15db7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/commands/config/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ pub enum Action {
impl Action {
pub fn type_str(&self) -> String {
match self {
Action::Simulate(_) => "Sim",
Action::Send(_) => "Txn",
Action::Simulate(_) => "Simulate",
Action::Send(_) => "Send ",
}
.to_string()
}
Expand Down

0 comments on commit d15db7c

Please sign in to comment.