Skip to content

Commit 4d494a7

Browse files
committed
change of variable name
Signed-off-by: Krishnasuri Narayanam <[email protected]>
1 parent 4e0ccf9 commit 4d494a7

File tree

1 file changed

+2
-2
lines changed
  • samples/corda-simple-application/clients/src/main/kotlin/com/cordaSimpleApplication/client

1 file changed

+2
-2
lines changed

samples/corda-simple-application/clients/src/main/kotlin/com/cordaSimpleApplication/client/SimpleStateManager.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ class GetStateUsingLinearIdCommand : CliktCommand(help = "Gets state by linearId
147147
rpcPort = config["CORDA_PORT"]!!.toInt())
148148
try {
149149
val proxy = rpc.proxy
150-
val states = proxy.startFlow(::GetStateByLinearId, linearId)
150+
val state = proxy.startFlow(::GetStateByLinearId, linearId)
151151
.returnValue.get()
152-
println(states)
152+
println(state)
153153
} catch (e: Exception) {
154154
println(e.toString())
155155
} finally {

0 commit comments

Comments
 (0)