From 456fa4e4ecb9ca6926256837b8f0cef6d5a835fc Mon Sep 17 00:00:00 2001 From: Rongjian Lan Date: Sat, 15 Dec 2018 02:14:06 -0800 Subject: [PATCH] Update beacon chain ip in wallet --- client/wallet/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/wallet/main.go b/client/wallet/main.go index af1e0f139..ae5818ca9 100644 --- a/client/wallet/main.go +++ b/client/wallet/main.go @@ -268,8 +268,8 @@ func getShardIDToLeaderMap() map[uint32]p2p.Peer { func CreateWalletNode() *node.Node { shardIDLeaderMap := make(map[uint32]p2p.Peer) - port, _ := strconv.Atoi("8081") - bcClient := beaconchain.NewClient("127.0.0.1", strconv.Itoa(port+libs.BeaconchainServicePortDiff)) + port, _ := strconv.Atoi("9999") + bcClient := beaconchain.NewClient("54.183.5.66", strconv.Itoa(port+libs.BeaconchainServicePortDiff)) response := bcClient.GetLeaders() for _, leader := range response.Leaders {