@@ -83,7 +83,7 @@ public class IntegrationTest4Bftsmart { | |||||
gwkey0.setPrivKeyValue(IntegrationBase.PRIV_KEYS[0]); | gwkey0.setPrivKeyValue(IntegrationBase.PRIV_KEYS[0]); | ||||
gwkey0.setPrivKeyPassword(encodedBase58Pwd); | gwkey0.setPrivKeyPassword(encodedBase58Pwd); | ||||
GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, | GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, | ||||
peerNodes[0].getServiceAddress(), providers,null); | |||||
providers,null, peerNodes[0].getServiceAddress()); | |||||
ThreadInvoker.AsyncCallback<Object> gwStarting = gateway.start(); | ThreadInvoker.AsyncCallback<Object> gwStarting = gateway.start(); | ||||
@@ -53,7 +53,7 @@ public class IntegrationTest4Contract { | |||||
gwkey0.setPrivKeyValue(IntegrationBase.PRIV_KEYS[0]); | gwkey0.setPrivKeyValue(IntegrationBase.PRIV_KEYS[0]); | ||||
gwkey0.setPrivKeyPassword(encodedBase58Pwd); | gwkey0.setPrivKeyPassword(encodedBase58Pwd); | ||||
GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, | GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, | ||||
peerNodes[0].getServiceAddress(), providers,null); | |||||
providers,null, peerNodes[0].getServiceAddress()); | |||||
ThreadInvoker.AsyncCallback<Object> gwStarting = gateway.start(); | ThreadInvoker.AsyncCallback<Object> gwStarting = gateway.start(); | ||||
@@ -91,7 +91,7 @@ public class IntegrationTest4MQ { | |||||
Map<String,Object> otherMap = new HashMap<String,Object>(); | Map<String,Object> otherMap = new HashMap<String,Object>(); | ||||
otherMap.put("DATA_RETRIEVAL_URL",DATA_RETRIEVAL_URL); | otherMap.put("DATA_RETRIEVAL_URL",DATA_RETRIEVAL_URL); | ||||
GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, | GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, | ||||
peerNodes[0].getServiceAddress(), providers, otherMap); | |||||
providers, otherMap, peerNodes[0].getServiceAddress()); | |||||
AsyncCallback<Object> gwStarting = gateway.start(); | AsyncCallback<Object> gwStarting = gateway.start(); | ||||
@@ -240,7 +240,7 @@ public class BftsmartLedgerInit { | |||||
gwkey0.setPrivKeyValue(BftsmartConfig.PRIV_KEY[0]); | gwkey0.setPrivKeyValue(BftsmartConfig.PRIV_KEY[0]); | ||||
gwkey0.setPrivKeyPassword(encodedBase58Pwd); | gwkey0.setPrivKeyPassword(encodedBase58Pwd); | ||||
GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, | GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, | ||||
peerNode.getServiceAddress(), LedgerInitConsensusConfig.bftsmartProvider,null); | |||||
LedgerInitConsensusConfig.bftsmartProvider,null, peerNode.getServiceAddress()); | |||||
ThreadInvoker.AsyncCallback<Object> gwStarting = gateway.start(); | ThreadInvoker.AsyncCallback<Object> gwStarting = gateway.start(); | ||||