Skip to content
Snippets Groups Projects
Select Git revision
  • 4d1c77ee5968a3861f843d5c551e1a48eed1683a
  • master default protected
  • visualize_errors
3 results

mlp_train.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)
    }