Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PAN-2120: remove bid id #12

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pantos/cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ def _print_bids(
print('Pantos service node bids for token transfers from the\n'
f'source blockchain {source_blockchain.name} to the destination '
f'blockchain {destination_blockchain.name}:\n') # noqa E231
print('Service node\t\t\t\t\tBid ID\tTime\tFee')
print('\t\t\t\t\t\t\t(s)\t(PAN)')
print('Service node\t\t\t\t\tTime\tFee')
print('\t\t\t\t\t\t(s)\t(PAN)')
print('==================================='
'==================================')
for service_node_address, bids in service_node_bids.items():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pantos-client-cli"
version = "1.1.2"
version = "1.1.3"
description = "Client CLI for engaging with the Pantos system"
authors = ["Pantos GmbH <contact@pantos.io>"]
license = "GPL-3.0-only"
Expand Down
8 changes: 4 additions & 4 deletions tests/test__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ def test_bids(mock_retrieve_service_node_bids, mock_cli_config,
'Pantos service node bids for token transfers from the\n'
'source blockchain BNB_CHAIN to the destination blockchain ETHEREUM:\n'
'\n'
'Service node\t\t\t\t\tBid ID\tTime\tFee\n'
'\t\t\t\t\t\t\t(s)\t(PAN)\n'
'Service node\t\t\t\t\tTime\tFee\n'
'\t\t\t\t\t\t(s)\t(PAN)\n'
'===================================================================='
'=\n0x9C20a03E230e9733561E4bab598409bB6d5AED12\t600\t2\n'
'0x9C20a03E230e9733561E4bab598409bB6d5AED12\t1200\t1.5\n')
Expand Down Expand Up @@ -269,8 +269,8 @@ def test_bids_no_bids_available(mock_retrieve_service_node_bids,
'Pantos service node bids for token transfers from the\n'
'source blockchain BNB_CHAIN to the destination blockchain ETHEREUM:\n'
'\n'
'Service node\t\t\t\t\tBid ID\tTime\tFee\n'
'\t\t\t\t\t\t\t(s)\t(PAN)\n'
'Service node\t\t\t\t\tTime\tFee\n'
'\t\t\t\t\t\t(s)\t(PAN)\n'
'===================================================================='
'=\n')

Expand Down
Loading