Skip to content

Commit

Permalink
fix: change asset title to uSTX
Browse files Browse the repository at this point in the history
  • Loading branch information
csgui committed Dec 21, 2022
1 parent 3980f6d commit ce5d107
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/clarity-repl/src/repl/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -963,8 +963,7 @@ impl Session {
let accounts = self.interpreter.get_accounts();
if accounts.len() > 0 {
let tokens = self.interpreter.get_tokens();
let mut headers = vec!["Address".to_string()];
headers.append(&mut tokens.clone());
let headers = vec!["Address".to_string(), "uSTX".to_string()];
let mut headers_cells = vec![];
for header in headers.iter() {
headers_cells.push(Cell::new(&header));
Expand Down

0 comments on commit ce5d107

Please sign in to comment.