add comments in communication templates

This commit is contained in:
Jonathan Rainville 2018-06-18 15:44:24 -04:00
parent c1540dc2ea
commit 78f8dfdd60
2 changed files with 12 additions and 12 deletions

View File

@ -1,13 +1,13 @@
module.exports = {
default: {
enabled: true,
provider: "whisper",
available_providers: ["whisper"],
provider: "whisper", // Communication provider. Currently, Embark only supports whisper
available_providers: ["whisper"], // Array of available providers
connection: {
host: "localhost",
port: 8546,
type: "ws"
}
host: "localhost", // Host of the blockchain node
port: 8546, // Port of the blockchain node
type: "ws" // Type of connection (ws or rps)
}
}
};

View File

@ -1,12 +1,12 @@
module.exports = {
default: {
enabled: true,
provider: "whisper",
available_providers: ["whisper"],
provider: "whisper", // Communication provider. Currently, Embark only supports whisper
available_providers: ["whisper"], // Array of available providers
connection: {
host: "localhost",
port: 8546,
type: "ws"
}
host: "localhost", // Host of the blockchain node
port: 8546, // Port of the blockchain node
type: "ws" // Type of connection (ws or rps)
}
}
};