Skip to content

Commit

Permalink
Fix typo in information output (#1537)
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Aug 9, 2024
1 parent 2e63fbe commit 067b5a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/contract/invoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ impl NetworkRunnable for Cmd {
ShouldSend::No => (sim_res.results()?[0].xdr.clone(), sim_res.events()?),
ShouldSend::DefaultNo => {
let print = print::Print::new(global_args.map_or(false, |g| g.quiet));
print.infoln("Send skipped because simulation identified a read-only. Send by rerunning with `--send=yes`.");
print.infoln("Send skipped because simulation identified as read-only. Send by rerunning with `--send=yes`.");
(sim_res.results()?[0].xdr.clone(), sim_res.events()?)
}
};
Expand Down

0 comments on commit 067b5a7

Please sign in to comment.