This commit is contained in:
GME 2019-03-27 20:13:22 +01:00
parent 982386ef7e
commit 6896e5ee2b
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ public class QueryWalletByOwnerTest {
ChannelClientWrapper channelClientWrapper = ChannelClientWrapper.setupChannel(fabricClientWrapper);
String[] args1 = {"chef"};
String[] args1 = {"bitman"};
Collection<ProposalResponse> responseQuery = channelClientWrapper.queryByChainCode(chaincode,"queryWalletsByOwner",args1);
for(ProposalResponse pres : responseQuery){

View file

@ -56,7 +56,7 @@ public class TransactionTestNewVersion {
ChaincodeID cid = ChaincodeID.newBuilder().setName(Config.CHAINCODE_NAME).build();
tpr.setChaincodeID(cid);
tpr.setFcn("queryWalletsByOwner");
tpr.setArgs(new String[]{"chef"});
tpr.setArgs(new String[]{"bitman"});
tpr.setProposalWaitTime(120000);
Collection<ProposalResponse> invokePropResp = channel.sendTransactionProposal(tpr);