Add missing constructor parameter

This commit is contained in:
Christian Sailer 2017-11-27 17:35:43 +00:00
parent 277d528849
commit d9e0aa9068

View File

@ -74,7 +74,7 @@ class CashIssueAndPaySampler : AbstractSampler() {
override fun createFlowInvoke(rpcProxy: CordaRPCOps, testContext: JavaSamplerContext): FlowInvoke<*> {
val amount = 2_000_000.POUNDS
return FlowInvoke<CashIssueAndPaymentFlow>(CashIssueAndPaymentFlow::class.java, arrayOf(amount, OpaqueBytes.of(1), notaryIdentity, counterParty))
return FlowInvoke<CashIssueAndPaymentFlow>(CashIssueAndPaymentFlow::class.java, arrayOf(amount, OpaqueBytes.of(1), notaryIdentity, true, counterParty))
}
override fun teardownTest(rpcProxy: CordaRPCOps, testContext: JavaSamplerContext) {