Skip to content

Commit

Permalink
PAN-2120: remove bid id (#12)
Browse files Browse the repository at this point in the history
* fix: remove bid id

* fix: broken tests
  • Loading branch information
juanmanuel-tirado authored Jul 31, 2024
1 parent 090c726 commit dad7ba4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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

0 comments on commit dad7ba4

Please sign in to comment.