mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-30 22:01:30 +08:00
BUG: fixed Python 2 issue
This commit is contained in:
@@ -215,8 +215,10 @@ class Marketplace:
|
||||
print('\nThe price for a monthly subscription to this dataset is'
|
||||
' {} ENG'.format(price))
|
||||
|
||||
print('Checking that the ENG balance in {} is greater than '
|
||||
'{} ENG... '.format(address, price), end='')
|
||||
print(
|
||||
'Checking that the ENG balance in {} is greater than {} '
|
||||
'ENG... '.format(address, price)
|
||||
)
|
||||
|
||||
wallet_address = address[2:]
|
||||
balance = self.web3.eth.call({
|
||||
|
||||
@@ -16,7 +16,7 @@ class TestMarketplace(WithLogger, ZiplineTestCase):
|
||||
|
||||
def test_subscribe(self):
|
||||
marketplace = Marketplace()
|
||||
marketplace.subscribe('marketcap1234')
|
||||
marketplace.subscribe('marketcap2222')
|
||||
pass
|
||||
|
||||
def test_ingest(self):
|
||||
|
||||
Reference in New Issue
Block a user