mirror of
https://github.com/corda/corda.git
synced 2024-12-28 00:38:55 +00:00
Order of parameters
This commit is contained in:
parent
d9e0aa9068
commit
c82d167296
@ -74,7 +74,7 @@ class CashIssueAndPaySampler : AbstractSampler() {
|
|||||||
|
|
||||||
override fun createFlowInvoke(rpcProxy: CordaRPCOps, testContext: JavaSamplerContext): FlowInvoke<*> {
|
override fun createFlowInvoke(rpcProxy: CordaRPCOps, testContext: JavaSamplerContext): FlowInvoke<*> {
|
||||||
val amount = 2_000_000.POUNDS
|
val amount = 2_000_000.POUNDS
|
||||||
return FlowInvoke<CashIssueAndPaymentFlow>(CashIssueAndPaymentFlow::class.java, arrayOf(amount, OpaqueBytes.of(1), notaryIdentity, true, counterParty))
|
return FlowInvoke<CashIssueAndPaymentFlow>(CashIssueAndPaymentFlow::class.java, arrayOf(amount, OpaqueBytes.of(1), counterParty, true, notaryIdentity))
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun teardownTest(rpcProxy: CordaRPCOps, testContext: JavaSamplerContext) {
|
override fun teardownTest(rpcProxy: CordaRPCOps, testContext: JavaSamplerContext) {
|
||||||
|
Loading…
Reference in New Issue
Block a user