Skip to content

Commit

Permalink
Start seed node in London
Browse files Browse the repository at this point in the history
  • Loading branch information
陈志同 authored and 陈志同 committed Dec 12, 2016
1 parent 56f64cd commit 524c242
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AntSharesApp/scripts/AntShares/Global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
let start = new Date().getTime();
let seed2 = new Network.RPC.RpcClient("https://seed2.antshares.org:10331/");
let seed8 = new Network.RPC.RpcClient("http://51.140.167.122:10332/");
let seed8 = new Network.RPC.RpcClient("https://seed8.antshares.org:10331");
$("#seed").text("中国上海 https://seed2.antshares.org:10331");
new Implementations.Blockchains.RPC.RpcBlockchain(seed2).getBlockCount().then(result =>
{
Expand All @@ -29,7 +29,7 @@
if (timeSpan2 < timeSpan)
{
Global.Blockchain = Core.Blockchain.registerBlockchain(new Implementations.Blockchains.RPC.RpcBlockchain(seed8));
$("#seed").text("英国伦敦 http://51.140.167.122:10332");
$("#seed").text("英国伦敦 https://seed8.antshares.org:10331");
}
});

Expand All @@ -39,7 +39,7 @@

$(function ()
{
//Global.chooseNode();
Global.chooseNode();
});


Expand Down
1 change: 1 addition & 0 deletions AntSharesApp/www/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ footer div { width:80%; margin:auto }
.blue-panel { margin:0 -35px }
.all-asset-btn { right:35px }
.other-assets { padding:0 35px }
select:focus, textarea:focus, input:focus { font-size: 16px !important; }
}
@media only screen and (max-height: 560px) {
.alert-info { display:none }
Expand Down

1 comment on commit 524c242

@chenzhitong
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

此次提交还修复了手机输入框得到输入焦点时自动缩放页面的Bug

Please sign in to comment.