Skip to content

Commit

Permalink
Display token address in CLI game-info command
Browse files Browse the repository at this point in the history
  • Loading branch information
DogLooksGood committed Nov 17, 2023
1 parent 4576c7c commit 134af18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ Race Protocol: A multi-chain infrastructure for asymmetric competitive games
# Master(Unreleased)

## Enhancements
- Transactor & Contract: Squash transactions for better performance
- Transactor & Contract: Squash transactions for better performance.
- CLI: Display token address in `game-info`.

## Fixes
- Transactor: Fix sending duplicated settlements
Expand Down
1 change: 1 addition & 0 deletions cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ async fn game_info(addr: &str, transport: Arc<dyn TransportT>) {
println!("Game account: {}", game_account.addr);
println!("Title: {}", game_account.title);
println!("Game bundle: {}", game_account.bundle_addr);
println!("Token address: {}", game_account.token_addr);
println!("Access version: {}", game_account.access_version);
println!("Settle version: {}", game_account.settle_version);
println!("Data size: {}", game_account.data.len());
Expand Down

0 comments on commit 134af18

Please sign in to comment.