@@ -183,6 +183,8 @@ pub enum ActionKind {
183
183
P2pCallbacksP2pChannelsStreamingRpcReady ,
184
184
P2pCallbacksP2pChannelsStreamingRpcResponseReceived ,
185
185
P2pCallbacksP2pChannelsStreamingRpcTimeout ,
186
+ P2pCallbacksP2pDisconnection ,
187
+ P2pCallbacksRpcRespondBestTip ,
186
188
P2pChannelsBestTipInit ,
187
189
P2pChannelsBestTipPending ,
188
190
P2pChannelsBestTipReady ,
@@ -520,7 +522,6 @@ pub enum ActionKind {
520
522
TransactionPoolVerifyError ,
521
523
TransactionPoolEffectfulFetchAccounts ,
522
524
TransitionFrontierGenesisInject ,
523
- TransitionFrontierRpcRespondBestTip ,
524
525
TransitionFrontierSyncFailed ,
525
526
TransitionFrontierSynced ,
526
527
TransitionFrontierGenesisLedgerLoadInit ,
@@ -570,7 +571,6 @@ pub enum ActionKind {
570
571
TransitionFrontierSyncLedgerSnarkedNumAccountsReceived ,
571
572
TransitionFrontierSyncLedgerSnarkedNumAccountsRejected ,
572
573
TransitionFrontierSyncLedgerSnarkedNumAccountsSuccess ,
573
- TransitionFrontierSyncLedgerSnarkedP2pDisconnection ,
574
574
TransitionFrontierSyncLedgerSnarkedPeerQueryAddressError ,
575
575
TransitionFrontierSyncLedgerSnarkedPeerQueryAddressInit ,
576
576
TransitionFrontierSyncLedgerSnarkedPeerQueryAddressPending ,
@@ -697,6 +697,8 @@ impl ActionKindGet for P2pCallbacksAction {
697
697
Self :: P2pChannelsStreamingRpcResponseReceived { .. } => {
698
698
ActionKind :: P2pCallbacksP2pChannelsStreamingRpcResponseReceived
699
699
}
700
+ Self :: P2pDisconnection { .. } => ActionKind :: P2pCallbacksP2pDisconnection ,
701
+ Self :: RpcRespondBestTip { .. } => ActionKind :: P2pCallbacksRpcRespondBestTip ,
700
702
}
701
703
}
702
704
}
@@ -750,7 +752,6 @@ impl ActionKindGet for TransitionFrontierAction {
750
752
Self :: GenesisInject => ActionKind :: TransitionFrontierGenesisInject ,
751
753
Self :: Synced { .. } => ActionKind :: TransitionFrontierSynced ,
752
754
Self :: SyncFailed { .. } => ActionKind :: TransitionFrontierSyncFailed ,
753
- Self :: RpcRespondBestTip { .. } => ActionKind :: TransitionFrontierRpcRespondBestTip ,
754
755
}
755
756
}
756
757
}
@@ -1922,9 +1923,6 @@ impl ActionKindGet for TransitionFrontierSyncLedgerSnarkedAction {
1922
1923
ActionKind :: TransitionFrontierSyncLedgerSnarkedMerkleTreeSyncSuccess
1923
1924
}
1924
1925
Self :: Success => ActionKind :: TransitionFrontierSyncLedgerSnarkedSuccess ,
1925
- Self :: P2pDisconnection { .. } => {
1926
- ActionKind :: TransitionFrontierSyncLedgerSnarkedP2pDisconnection
1927
- }
1928
1926
}
1929
1927
}
1930
1928
}
0 commit comments