diff --git a/cmd/p2p-oracle-node/p2p-oracle-node.go b/cmd/dione/dione.go similarity index 100% rename from cmd/p2p-oracle-node/p2p-oracle-node.go rename to cmd/dione/dione.go diff --git a/node/config.go b/node/config.go deleted file mode 100644 index 2c91f71..0000000 --- a/node/config.go +++ /dev/null @@ -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"` -}