Skip to content

Commit d1d2668

Browse files
committed
fix: aleph instance list to display Credits instead of $ALEPH for credits instance
1 parent 1c7a4fd commit d1d2668

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/aleph_client/commands/instance/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,7 @@ async def create(
213213
)
214214
)
215215
async with AuthenticatedAlephHttpClient(account=account) as client:
216-
vouchers = await client.voucher.fetch_vouchers_by_chain(
217-
address=address, chain=Chain(account.CHAIN)
218-
)
216+
vouchers = await client.voucher.fetch_vouchers_by_chain(address=address, chain=Chain(account.CHAIN))
219217
if len(vouchers) == 0:
220218
console.print("No NFT vouchers find on this account")
221219
raise typer.Exit(code=1)

0 commit comments

Comments
 (0)