[CORDA-1681]: It is not possible to run stateMachinesSnapshot from the shell (fixed). (#3791)

This commit is contained in:
Michele Sollecito 2018-08-15 17:02:25 +01:00 committed by GitHub
parent 2b69789a30
commit e5e4596461
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,7 +103,8 @@ sealed class InvocationOrigin {
/**
* Origin was an RPC call.
*/
data class RPC(private val actor: Actor) : InvocationOrigin() {
// Field `actor` needs to stay public for AMQP / JSON serialization to work.
data class RPC(val actor: Actor) : InvocationOrigin() {
override fun principal() = Principal { actor.id.value }
}