mirror of https://github.com/voidlizard/hbs2
26 lines
612 B
Haskell
26 lines
612 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
{-# Language UndecidableInstances #-}
|
|
module RPC2.Announce where
|
|
|
|
import HBS2.Prelude.Plated
|
|
import HBS2.Data.Types.Refs (HashRef(..))
|
|
import HBS2.Net.Proto.Service
|
|
|
|
import HBS2.System.Logger.Simple
|
|
|
|
import SendBlockAnnounce
|
|
|
|
import HBS2.Peer.RPC.Internal.Types
|
|
import HBS2.Peer.RPC.API.Peer
|
|
|
|
|
|
instance (MonadIO m,HasRpcContext PeerAPI RPC2Context m) => HandleMethod m RpcAnnounce where
|
|
|
|
handleMethod href = do
|
|
co <- getRpcContext @PeerAPI
|
|
debug $ "rpc.announce:" <+> pretty href
|
|
sendBlockAnnounce (rpcPeerEnv co) (rpcLocalMultiCast co) (fromHashRef href)
|
|
|
|
|
|
|