@@ -503,6 +503,7 @@ pub enum ActionKind {
503503 RpcScanStateSummaryGetSuccess ,
504504 RpcScanStateSummaryLedgerGetInit ,
505505 RpcSnarkPoolAvailableJobsGet ,
506+ RpcSnarkPoolCompletedJobsGet ,
506507 RpcSnarkPoolJobGet ,
507508 RpcSnarkerConfigGet ,
508509 RpcSnarkerJobCommit ,
@@ -542,6 +543,7 @@ pub enum ActionKind {
542543 RpcEffectfulReadinessCheck ,
543544 RpcEffectfulScanStateSummaryGetSuccess ,
544545 RpcEffectfulSnarkPoolAvailableJobsGet ,
546+ RpcEffectfulSnarkPoolCompletedJobsGet ,
545547 RpcEffectfulSnarkPoolJobGet ,
546548 RpcEffectfulSnarkerConfigGet ,
547549 RpcEffectfulSnarkerJobCommit ,
@@ -724,7 +726,7 @@ pub enum ActionKind {
724726}
725727
726728impl ActionKind {
727- pub const COUNT : u16 = 614 ;
729+ pub const COUNT : u16 = 616 ;
728730}
729731
730732impl std:: fmt:: Display for ActionKind {
@@ -1070,6 +1072,7 @@ impl ActionKindGet for RpcAction {
10701072 Self :: ScanStateSummaryGetSuccess { .. } => ActionKind :: RpcScanStateSummaryGetSuccess ,
10711073 Self :: SnarkPoolAvailableJobsGet { .. } => ActionKind :: RpcSnarkPoolAvailableJobsGet ,
10721074 Self :: SnarkPoolJobGet { .. } => ActionKind :: RpcSnarkPoolJobGet ,
1075+ Self :: SnarkPoolCompletedJobsGet { .. } => ActionKind :: RpcSnarkPoolCompletedJobsGet ,
10731076 Self :: SnarkerConfigGet { .. } => ActionKind :: RpcSnarkerConfigGet ,
10741077 Self :: SnarkerJobCommit { .. } => ActionKind :: RpcSnarkerJobCommit ,
10751078 Self :: SnarkerJobSpec { .. } => ActionKind :: RpcSnarkerJobSpec ,
@@ -1135,6 +1138,9 @@ impl ActionKindGet for RpcEffectfulAction {
11351138 ActionKind :: RpcEffectfulSnarkPoolAvailableJobsGet
11361139 }
11371140 Self :: SnarkPoolJobGet { .. } => ActionKind :: RpcEffectfulSnarkPoolJobGet ,
1141+ Self :: SnarkPoolCompletedJobsGet { .. } => {
1142+ ActionKind :: RpcEffectfulSnarkPoolCompletedJobsGet
1143+ }
11381144 Self :: SnarkerConfigGet { .. } => ActionKind :: RpcEffectfulSnarkerConfigGet ,
11391145 Self :: SnarkerJobCommit { .. } => ActionKind :: RpcEffectfulSnarkerJobCommit ,
11401146 Self :: SnarkerJobSpec { .. } => ActionKind :: RpcEffectfulSnarkerJobSpec ,
0 commit comments