Skip to content

Commit 6c406c2

Browse files
Fixed naming issue for one of the amend claim progress tracker steps.
1 parent ba24841 commit 6c406c2

File tree

1 file changed

+4
-4
lines changed
  • onixlabs-corda-identity-framework-workflow/src/main/kotlin/io/onixlabs/corda/identityframework/workflow/claims

1 file changed

+4
-4
lines changed

onixlabs-corda-identity-framework-workflow/src/main/kotlin/io/onixlabs/corda/identityframework/workflow/claims/AmendClaimFlowHandler.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,20 +65,20 @@ class AmendClaimFlowHandler(
6565
private class Handler(private val session: FlowSession) : FlowLogic<SignedTransaction>() {
6666

6767
private companion object {
68-
object HandlingAmendedClaimStep : Step("Handling amended claim.") {
68+
object HandleAmendedClaimStep : Step("Handling amended claim.") {
6969
override fun childProgressTracker(): ProgressTracker = tracker()
7070
}
7171
}
7272

73-
override val progressTracker = ProgressTracker(HandlingAmendedClaimStep)
73+
override val progressTracker = ProgressTracker(HandleAmendedClaimStep)
7474

7575
@Suspendable
7676
override fun call(): SignedTransaction {
77-
currentStep(HandlingAmendedClaimStep)
77+
currentStep(HandleAmendedClaimStep)
7878
return subFlow(
7979
AmendClaimFlowHandler(
8080
session,
81-
progressTracker = HandlingAmendedClaimStep.childProgressTracker()
81+
progressTracker = HandleAmendedClaimStep.childProgressTracker()
8282
)
8383
)
8484
}

0 commit comments

Comments
 (0)