mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
Work around change in how c'tors with optional arguments are handled via RPC in FixingRoleDecider.
This commit is contained in:
parent
3871dbbc1f
commit
8627a7dbbe
@ -132,8 +132,9 @@ object FixingFlow {
|
||||
*
|
||||
* TODO: Replace [FixingSession] and [FixingSessionInitiationHandler] with generic session initiation logic once it exists.
|
||||
*/
|
||||
class FixingRoleDecider(val ref: StateRef,
|
||||
override val progressTracker: ProgressTracker = tracker()) : FlowLogic<Unit>() {
|
||||
class FixingRoleDecider(val ref: StateRef, override val progressTracker: ProgressTracker) : FlowLogic<Unit>() {
|
||||
@Suppress("unused") // Used via reflection.
|
||||
constructor(ref: StateRef) : this(ref, tracker())
|
||||
|
||||
companion object {
|
||||
class LOADING() : ProgressTracker.Step("Loading state to decide fixing role")
|
||||
|
Loading…
Reference in New Issue
Block a user