// Copyright (c) 2020-2021 The Decred developers // Use of this source code is governed by an ISC // license that can be found in the LICENSE file. package netsync import ( "github.com/decred/dcrd/dcrutil/v4" ) // PeerNotifier provides an interface to notify peers of status changes related // to blocks and transactions. type PeerNotifier interface { // AnnounceNewTransactions generates and relays inventory vectors and // notifies websocket clients of the passed transactions. AnnounceNewTransactions(txns []*dcrutil.Tx) }