mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-03 04:36:51 +00:00
8 lines
242 B
Go
8 lines
242 B
Go
package main
|
|
|
|
import "github.com/fabbez/topiad/cmd/kaspawallet/daemon/server"
|
|
|
|
func startDaemon(conf *startDaemonConfig) error {
|
|
return server.Start(conf.NetParams(), conf.Listen, conf.RPCServer, conf.KeysFile, conf.Profile, conf.Timeout)
|
|
}
|