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

This commit is contained in:
Michele Sollecito 2018-08-15 17:05:01 +01:00 committed by GitHub
parent 9e9dda6693
commit 769586fdf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,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 }
}