Skip to content

Commit

Permalink
yellow
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-if committed Apr 9, 2024
1 parent a08f8a3 commit 1e8b82d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ironfish-cli/src/commands/wallet/balance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class BalanceCommand extends IronfishCommand {
if (isNativeIdentifier(assetId)) {
nameToRender = '$IRON'
} else {
nameToRender = asset.symbol || assetId
nameToRender = asset.verification.symbol || assetId
}
const assetName = renderAssetWithVerificationStatus(nameToRender, asset)

Expand Down
2 changes: 1 addition & 1 deletion ironfish-cli/src/utils/asset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function renderAssetWithVerificationStatus(
case 'verified':
return chalk.green(name + '✓')
case 'unknown':
return chalk.green(name + '?')
return chalk.yellow(name + '?')
default:
return name
}
Expand Down

0 comments on commit 1e8b82d

Please sign in to comment.