mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-11 14:24:24 +00:00
add comments in communication templates
This commit is contained in:
parent
c1540dc2ea
commit
78f8dfdd60
@ -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)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
@ -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)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user