Skip to content
Snippets Groups Projects
Select Git revision
  • 9729559c484a0da330e60ef6769176d1e524d84e
  • master default protected
  • v0.2.1
  • v0.2.0
4 results

multilayer_nmf.py

Blame
  • plugin.go 351 B
    package gossip
    
    import (
    	"github.com/iotaledger/goshimmer/packages/node"
    )
    
    var PLUGIN = node.NewPlugin("Gossip", configure, run)
    
    func configure(plugin *node.Plugin) {
    	configureNeighbors(plugin)
    	configureServer(plugin)
    	configureSendQueue(plugin)
    }
    
    func run(plugin *node.Plugin) {
    	runNeighbors(plugin)
    	runServer(plugin)
    	runSendQueue(plugin)
    }