1
0
mirror of https://github.com/ACINQ/eclair.git synced 2024-11-20 02:27:32 +01:00

fixed issue with state data in ChannelChangedState (stateData->nextStateData)

This commit is contained in:
pm47 2017-02-21 11:39:33 +01:00
parent 1eea11cf44
commit b8fac57ac0

View File

@ -887,7 +887,7 @@ class Channel(val r: ActorRef, val blockchain: ActorRef, router: ActorRef, relay
}
onTransition {
case previousState -> currentState => context.system.eventStream.publish(ChannelChangedState(self, context.parent, remoteNodeId, previousState, currentState, stateData))
case previousState -> currentState => context.system.eventStream.publish(ChannelChangedState(self, context.parent, remoteNodeId, previousState, currentState, nextStateData))
}
/*