diff --git a/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4Bftsmart.java b/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4Bftsmart.java index 28efbdb2..15a85750 100644 --- a/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4Bftsmart.java +++ b/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4Bftsmart.java @@ -83,7 +83,7 @@ public class IntegrationTest4Bftsmart { gwkey0.setPrivKeyValue(IntegrationBase.PRIV_KEYS[0]); gwkey0.setPrivKeyPassword(encodedBase58Pwd); GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, - peerNodes[0].getServiceAddress(), providers,null); + providers,null, peerNodes[0].getServiceAddress()); ThreadInvoker.AsyncCallback gwStarting = gateway.start(); diff --git a/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4Contract.java b/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4Contract.java index 098b7385..76982271 100644 --- a/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4Contract.java +++ b/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4Contract.java @@ -53,7 +53,7 @@ public class IntegrationTest4Contract { gwkey0.setPrivKeyValue(IntegrationBase.PRIV_KEYS[0]); gwkey0.setPrivKeyPassword(encodedBase58Pwd); GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, - peerNodes[0].getServiceAddress(), providers,null); + providers,null, peerNodes[0].getServiceAddress()); ThreadInvoker.AsyncCallback gwStarting = gateway.start(); diff --git a/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4MQ.java b/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4MQ.java index c8426253..16cb3419 100644 --- a/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4MQ.java +++ b/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/IntegrationTest4MQ.java @@ -91,7 +91,7 @@ public class IntegrationTest4MQ { Map otherMap = new HashMap(); otherMap.put("DATA_RETRIEVAL_URL",DATA_RETRIEVAL_URL); GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, - peerNodes[0].getServiceAddress(), providers, otherMap); + providers, otherMap, peerNodes[0].getServiceAddress()); AsyncCallback gwStarting = gateway.start(); diff --git a/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/batch/bftsmart/BftsmartLedgerInit.java b/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/batch/bftsmart/BftsmartLedgerInit.java index f7ddad5c..f6f6458f 100644 --- a/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/batch/bftsmart/BftsmartLedgerInit.java +++ b/source/test/test-integration/src/test/java/test/com/jd/blockchain/intgr/batch/bftsmart/BftsmartLedgerInit.java @@ -240,7 +240,7 @@ public class BftsmartLedgerInit { gwkey0.setPrivKeyValue(BftsmartConfig.PRIV_KEY[0]); gwkey0.setPrivKeyPassword(encodedBase58Pwd); GatewayTestRunner gateway = new GatewayTestRunner("127.0.0.1", 11000, gwkey0, - peerNode.getServiceAddress(), LedgerInitConsensusConfig.bftsmartProvider,null); + LedgerInitConsensusConfig.bftsmartProvider,null, peerNode.getServiceAddress()); ThreadInvoker.AsyncCallback gwStarting = gateway.start();