The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woop/syncing/interface.go

14 lines
401 B

package syncing
import (
"github.com/harmony-one/harmony/blockchain"
"github.com/harmony-one/harmony/p2p"
)
// StateSyncInterface is the interface to do state-sync.
type StateSyncInterface interface {
// Syncing blockchain from other peers.
// The returned channel is the signal of syncing finish.
ProcessStateSyncFromPeers(peers []p2p.Peer, bc *blockchain.Blockchain) (chan struct{}, error)
}