Skip to content

Commit

Permalink
Release v3.1.1
Browse files Browse the repository at this point in the history
* The integration test now runs different binaries depending
   on the network it is configured for
  • Loading branch information
iosifpeterfi committed Oct 3, 2023
1 parent e879a7a commit d175f2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion node/etny-node.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,12 @@ def __init__(self):
config.contract_address = config.testnet_contract_address;
config.heart_beat_address = config.testnet_heartbeat_address;
config.gas_price_measure = config.testnet_gas_price_measure;
config.integration_test_image = 'etny-pynithy-testnet';
else:
config.contract_address = config.openbeta_contract_address;
config.heart_beat_address = config.openbeta_heartbeat_address;
config.gas_price_measure = config.openbeta_gas_price_measure;
config.integration_test_image = 'etny-pynithy';

if config.contract_address == None:
config.contract_address = '0x549A6E06BB2084100148D50F51CF77a3436C3Ae7';
Expand Down Expand Up @@ -1151,7 +1153,7 @@ def __run_integration_test(self):
logger.info('Running integration test.')

[enclave_image_hash, _,
docker_compose_hash] = self.__image_registry.caller().getLatestTrustedZoneImageCertPublicKey('etny-pynithy',
docker_compose_hash] = self.__image_registry.caller().getLatestTrustedZoneImageCertPublicKey(config.integration_test_image,
'v3')
self.integration_bucket_name = 'etny-bucket-integration'
order_id = 'integration_test'
Expand Down

0 comments on commit d175f2a

Please sign in to comment.