diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-02-08 21:11:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-08 21:11:05 +0800 |
commit | 03daf601c15f0cdd1091798fa5a56f7b822244ac (patch) | |
tree | c2bc0c1849b7e800628a9ae48a5dc19a79188139 /light/postprocess.go | |
parent | 1a4e68721a901e86322631fed1191025a6d14c52 (diff) | |
parent | eb07dbb0790fc0f5fe5b3192da6b4d04d844239f (diff) | |
download | dexon-03daf601c15f0cdd1091798fa5a56f7b822244ac.tar dexon-03daf601c15f0cdd1091798fa5a56f7b822244ac.tar.gz dexon-03daf601c15f0cdd1091798fa5a56f7b822244ac.tar.bz2 dexon-03daf601c15f0cdd1091798fa5a56f7b822244ac.tar.lz dexon-03daf601c15f0cdd1091798fa5a56f7b822244ac.tar.xz dexon-03daf601c15f0cdd1091798fa5a56f7b822244ac.tar.zst dexon-03daf601c15f0cdd1091798fa5a56f7b822244ac.zip |
Merge pull request #16037 from karalabe/light-startup-polishes
eth, light: minor light client startup cleanups
Diffstat (limited to 'light/postprocess.go')
-rw-r--r-- | light/postprocess.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/light/postprocess.go b/light/postprocess.go index bbac58d12..160d07b17 100644 --- a/light/postprocess.go +++ b/light/postprocess.go @@ -52,7 +52,7 @@ type trustedCheckpoint struct { var ( mainnetCheckpoint = trustedCheckpoint{ - name: "ETH mainnet", + name: "mainnet", sectionIdx: 150, sectionHead: common.HexToHash("1e2e67f289565cbe7bd4367f7960dbd73a3f7c53439e1047cd7ba331c8109e39"), chtRoot: common.HexToHash("f2a6c9ca143d647b44523cc249f1072c8912358ab873a77a5fdc792b8df99e80"), @@ -60,7 +60,7 @@ var ( } ropstenCheckpoint = trustedCheckpoint{ - name: "Ropsten testnet", + name: "ropsten", sectionIdx: 75, sectionHead: common.HexToHash("12e68324f4578ea3e8e7fb3968167686729396c9279287fa1f1a8b51bb2d05b4"), chtRoot: common.HexToHash("3e51dc095c69fa654a4cac766e0afff7357515b4b3c3a379c675f810363e54be"), |