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

View File

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