fabric-chaincode-java icon indicating copy to clipboard operation
fabric-chaincode-java copied to clipboard

Hyperledger Fabric Contract and Chaincode implementation for Java https://wiki.hyperledger.org/display/fabric

Results 26 fabric-chaincode-java issues
Sort by recently updated
recently updated
newest added

Using 2.2.3LTS using the contract-api I have this method ``` @Transaction(submit=false) public QueryResponse paginatedRichQuery(Context ctx, String queryString, String pagesize, String passedBookmark) { logger.debug("Entering paginatedRichQuery with pagesize [" + pagesize +...

help wanted
hacktoberfest

Hey 😊 I want to contribute the following test: Test that calling `Logger.getLogger(LoggerTest.class).debug("debug message")` does not throw an exception. This tests the method [`Logger.debug`](https://github.com/hyperledger/fabric-chaincode-java/blob/d1d093b42324230f55410fda3c9efb1663859380/fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/Logger.java#L45). This test is based on the...

ChaincodeBase attempts to parse SSL certificates and keys provided by an external launcher in the following manner: ``` final SslContext createSSLContext() throws IOException { final byte[] ckb = Files.readAllBytes(Paths.get(this.tlsClientKeyPath)); final...

help wanted

Using 2.2.3LTS I have the following method ``` @Transaction(submit=false) public QueryResponse paginatedRichQuery(Context ctx, String queryString, String pagesize, String passedBookmark) { ``` I invoke paginatedRichQuery with inly 2 parameters rather than...

Signed-off-by: Antoine Toulme

I'm looking at version 2.3 but I think the behavior holds for the lastest version. The following code is based on https://github.com/hyperledger/fabric-samples/tree/main/asset-transfer-basic/chaincode-java. ```java @DataType public class Sale { public String...

### Steps to reproduce I'm looking at version 2.3 but I think the behavior holds for the lastest version. The following code is based on https://github.com/hyperledger/fabric-samples/tree/main/asset-transfer-basic/chaincode-java. ```java @DataType public class...

For reasons lost in history, Fabric hasn't standised on whether to load certs in base64 or PEM format. What does seem to be standard is if the environment variable ends...