We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce the error:
./gradlew test
public class FlowTests { private final MockNetwork network = new MockNetwork(ImmutableList.of( "com.template.contracts", "com.template.flows", "com.r3.corda.lib.tokens.money", "com.r3.corda.lib.tokens.contracts", "com.r3.corda.lib.tokens.workflows", "com.r3.corda.lib.tokens.testing")); private final StartedMockNode exchangeNode = network.createNode(); private final Party exchange = exchangeNode.getInfo().getLegalIdentities().get(0); @Before public void setup() { network.runNetwork(); } @After public void tearDown() { network.stopNodes(); } @Test public void dummyTest() throws ExecutionException, InterruptedException { ExampleFlowWithFixedToken issueFlow = new ExampleFlowWithFixedToken("USD", 1000L, exchange); Future<SignedTransaction> future = exchangeNode.startFlow(issueFlow); network.runNetwork(); SignedTransaction tx = future.get(); System.out.print(tx); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce the error:
./gradlew test
The text was updated successfully, but these errors were encountered: