Skip to content

Commit

Permalink
feat: add payment amount
Browse files Browse the repository at this point in the history
  • Loading branch information
dtdang committed Oct 18, 2024
1 parent 54b6ef9 commit e626ac4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion silverback/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,8 @@ def create_payment_stream(
assert token_amount # mypy happy

click.echo(yaml.safe_dump(dict(configuration=configuration.settings_display_dict())))
click.echo(f"duration: {stream_time}\n")
click.echo(f"duration: {stream_time}")
click.echo(f"payment: {token_amount / 1e18} {token.symbol()}\n")

if not click.confirm(
f"Do you want to use this configuration to fund Cluster '{cluster_path}'?"
Expand Down

0 comments on commit e626ac4

Please sign in to comment.