Skip to content

Commit

Permalink
Merge pull request loomnetwork#5 from loomnetwork/update_ports
Browse files Browse the repository at this point in the history
consolidate down to a single port
  • Loading branch information
eduardonunesp authored Aug 24, 2018
2 parents 6195a00 + 0c6fce8 commit aea0628
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dappchain/loom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LogDestination: "file://loom2.log"
LoomLogLevel: "debug"
ContractLogLevel: "debug"
BlockchainLogLevel: "error"
RPCListenAddress: "tcp://127.0.0.1:46657"
RPCListenAddress: "tcp://127.0.0.1:46658"
TransferGateway:
# Enables the Transfer Gateway Go contract, must be the same on all nodes.
ContractEnabled: true
Expand Down
2 changes: 1 addition & 1 deletion transfer_gateway
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ganache_port=8545
dapp_port=8080
dappchain_port_1=46657
dappchain_port_2=46658
build_number=371
build_number=404

# Check available platforms
platform='unknown'
Expand Down
4 changes: 2 additions & 2 deletions webclient/src/dc_managers/dc_account_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default class DAppChainAccountManager {

const client = new Client(
'default',
'ws://127.0.0.1:46657/websocket',
'ws://127.0.0.1:9999/queryws'
'ws://127.0.0.1:46658/websocket',
'ws://127.0.0.1:46658/queryws'
)

client.on('error', data => {
Expand Down
4 changes: 2 additions & 2 deletions webclient/src/dc_managers/dc_card_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export default class DAppChainCardManager {

const client = new Client(
'default',
'ws://127.0.0.1:46657/websocket',
'ws://127.0.0.1:9999/queryws'
'ws://127.0.0.1:46658/websocket',
'ws://127.0.0.1:46658/queryws'
)

// required middleware
Expand Down
4 changes: 2 additions & 2 deletions webclient/src/dc_managers/dc_gateway_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export default class DAppChainGatewayManager {

const client = new Client(
'default',
'ws://127.0.0.1:46657/websocket',
'ws://127.0.0.1:9999/queryws'
'ws://127.0.0.1:46658/websocket',
'ws://127.0.0.1:46658/queryws'
)

// required middleware
Expand Down

0 comments on commit aea0628

Please sign in to comment.