samples-java icon indicating copy to clipboard operation
samples-java copied to clipboard

This repository contains multiple sample apps, from CorDapps that help you get started, all the way to demonstrating specific features and advanced usage.

Results 33 samples-java issues
Sort by recently updated
recently updated
newest added

In the original example repo there was an example of using custom queries: https://github.com/corda/cordapp-example/blob/release-V4/java-source/src/main/java/com/example/api/ExampleApi.java#L132-L137 QueryCriteria generalCriteria = new QueryCriteria.VaultQueryCriteria(Vault.StateStatus.ALL); FieldInfo lenderField = QueryCriteriaUtils.getField("lender", IOUSchemaV1.PersistentIOU.class); CriteriaExpression lenderIndex = Builder.equal(lenderField, myLegalName.toString()); QueryCriteria...

Hi, following up [this question ](https://stackoverflow.com/questions/64643031/to-use-or-not-to-use-collectsignatureflow-when-all-the-accounts-involved-in-a-tr) on StackOverflow. Since the signers are all accounts all in the same node, the _CollectSignatureFlow_ should not be needed. The comment in the source...

I have finished both flows of issue. But when I try HouseSaleInitiorFlow, I can only see nothing but "starting". And I found that the transaction is not finished. Does anyone...