-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.js
41 lines (41 loc) · 921 Bytes
/
truffle.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module.exports = {
// contracts_build_directory: "./src/contracts",
// this causes a problem during migration: https://github.com/trufflesuite/truffle-migrate/issues/10
networks: {
development: {
host: "127.0.0.1",
port: 22001,
network_id: "*", // match any id
gasPrice: 0,
gas: 4500000
},
nodetwo: {
host: "127.0.0.1",
port: 22002,
network_id: "*", // match any id
gasPrice: 0,
gas: 4500000
},
nodethree: {
host: "127.0.0.1",
port: 22003,
network_id: "*", // match any id
gasPrice: 0,
gas: 4500000
},
nodefour: {
host: "127.0.0.1",
port: 22004,
network_id: "*", // match any id
gasPrice: 0,
gas: 4500000
},
nodefive: {
host: "127.0.0.1",
port: 22005,
network_id: "*", // match any id
gasPrice: 0,
gas: 4500000
}
}
};