Skip to content

Commit

Permalink
fix: truffle config dev port
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Nice committed Jun 17, 2019
1 parent 9ac1c4f commit a89b1ff
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion solidity/truffle-examples/bitcoin-balance/truffle.js
Expand Up @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
}
Expand Down
2 changes: 1 addition & 1 deletion solidity/truffle-examples/delegated-math/truffle.js
Expand Up @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
}
Expand Down
2 changes: 1 addition & 1 deletion solidity/truffle-examples/diesel-price/truffle.js
Expand Up @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
}
Expand Down
2 changes: 1 addition & 1 deletion solidity/truffle-examples/kraken-price-ticker/truffle.js
Expand Up @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
}
Expand Down
2 changes: 1 addition & 1 deletion solidity/truffle-examples/random-datasource/truffle.js
Expand Up @@ -13,7 +13,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
},
Expand Down
2 changes: 1 addition & 1 deletion solidity/truffle-examples/streamr/truffle.js
Expand Up @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
}
Expand Down
2 changes: 1 addition & 1 deletion solidity/truffle-examples/url-requests/truffle.js
Expand Up @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
}
Expand Down
2 changes: 1 addition & 1 deletion solidity/truffle-examples/wolfram-alpha/truffle.js
Expand Up @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
}
Expand Down
2 changes: 1 addition & 1 deletion solidity/truffle-examples/youtube-views/truffle.js
Expand Up @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
port: 9545,
network_id: "*",
websockets: true
}
Expand Down

0 comments on commit a89b1ff

Please sign in to comment.