Rename main go file and remove unnecessary node/config.go

This commit is contained in:
ChronosX88 2020-10-21 18:15:38 +04:00
parent 47a1f530f9
commit 9fa99ab8ef
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A
2 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
package node
type Config struct {
EthPrivateKey string `toml:"ethPrivateKey"`
ListenAddress string `toml:"listenAddress"`
ListenPort string `toml:"listenPort"`
BootstrapAddress string `toml:"bootstrapAddress"`
RendezvousString string `toml:"rendezvousString"`
PubSub PubSubConfig `toml:"pubSub"`
}
type PubSubConfig struct {
ProtocolID string `toml:"protocolID"`
}
type EthereumConfig struct {
PrivateKey string `toml:"privateKey"`
GatewayAddress string `toml:"gatewayAddress"`
}