@@ -183,6 +183,8 @@ pub enum ActionKind {
183183 P2pCallbacksP2pChannelsStreamingRpcReady ,
184184 P2pCallbacksP2pChannelsStreamingRpcResponseReceived ,
185185 P2pCallbacksP2pChannelsStreamingRpcTimeout ,
186+ P2pCallbacksP2pDisconnection ,
187+ P2pCallbacksRpcRespondBestTip ,
186188 P2pChannelsBestTipInit ,
187189 P2pChannelsBestTipPending ,
188190 P2pChannelsBestTipReady ,
@@ -520,7 +522,6 @@ pub enum ActionKind {
520522 TransactionPoolVerifyError ,
521523 TransactionPoolEffectfulFetchAccounts ,
522524 TransitionFrontierGenesisInject ,
523- TransitionFrontierRpcRespondBestTip ,
524525 TransitionFrontierSyncFailed ,
525526 TransitionFrontierSynced ,
526527 TransitionFrontierGenesisLedgerLoadInit ,
@@ -570,7 +571,6 @@ pub enum ActionKind {
570571 TransitionFrontierSyncLedgerSnarkedNumAccountsReceived ,
571572 TransitionFrontierSyncLedgerSnarkedNumAccountsRejected ,
572573 TransitionFrontierSyncLedgerSnarkedNumAccountsSuccess ,
573- TransitionFrontierSyncLedgerSnarkedP2pDisconnection ,
574574 TransitionFrontierSyncLedgerSnarkedPeerQueryAddressError ,
575575 TransitionFrontierSyncLedgerSnarkedPeerQueryAddressInit ,
576576 TransitionFrontierSyncLedgerSnarkedPeerQueryAddressPending ,
@@ -697,6 +697,8 @@ impl ActionKindGet for P2pCallbacksAction {
697697 Self :: P2pChannelsStreamingRpcResponseReceived { .. } => {
698698 ActionKind :: P2pCallbacksP2pChannelsStreamingRpcResponseReceived
699699 }
700+ Self :: P2pDisconnection { .. } => ActionKind :: P2pCallbacksP2pDisconnection ,
701+ Self :: RpcRespondBestTip { .. } => ActionKind :: P2pCallbacksRpcRespondBestTip ,
700702 }
701703 }
702704}
@@ -750,7 +752,6 @@ impl ActionKindGet for TransitionFrontierAction {
750752 Self :: GenesisInject => ActionKind :: TransitionFrontierGenesisInject ,
751753 Self :: Synced { .. } => ActionKind :: TransitionFrontierSynced ,
752754 Self :: SyncFailed { .. } => ActionKind :: TransitionFrontierSyncFailed ,
753- Self :: RpcRespondBestTip { .. } => ActionKind :: TransitionFrontierRpcRespondBestTip ,
754755 }
755756 }
756757}
@@ -1922,9 +1923,6 @@ impl ActionKindGet for TransitionFrontierSyncLedgerSnarkedAction {
19221923 ActionKind :: TransitionFrontierSyncLedgerSnarkedMerkleTreeSyncSuccess
19231924 }
19241925 Self :: Success => ActionKind :: TransitionFrontierSyncLedgerSnarkedSuccess ,
1925- Self :: P2pDisconnection { .. } => {
1926- ActionKind :: TransitionFrontierSyncLedgerSnarkedP2pDisconnection
1927- }
19281926 }
19291927 }
19301928}
0 commit comments