Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Add append-vec subcommand & another env knob #9490

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix...
  • Loading branch information
ryoqun committed May 11, 2020
commit d2f4a4883a5585042a47ca5afce91516db513c82
4 changes: 2 additions & 2 deletions cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1300,14 +1300,14 @@ fn process_show_account(
writeln!(
&mut account_string,
"Data (base58): {}",
&bs58::encode(data.clone()).into_string()
&bs58::encode(data).into_string()
)?;
}
AccountDataOutputFormat::Base64 => {
writeln!(
&mut account_string,
"Data (base64): {}",
&base64::encode(data.clone()).to_string()
&base64::encode(data)
)?;
}
AccountDataOutputFormat::Hex => {
Expand Down