diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-20 17:01:15 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 174b8c3bc1202de027b62fb1d995df3c69bdb254 (patch) | |
tree | 5ad4c92e1af933147523b2a0571c0bc4f3ae39f6 /mobile/params.go | |
parent | 73b611e6530cfeae090fa3c38402bf74fce281e7 (diff) | |
download | dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar.gz dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar.zst dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.zip |
Remove reference of Rinkeby network.
We do not need ethereum Rinkeby network in our system, remove it.
Diffstat (limited to 'mobile/params.go')
-rw-r--r-- | mobile/params.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/mobile/params.go b/mobile/params.go index bfcbf67af..f9b94b130 100644 --- a/mobile/params.go +++ b/mobile/params.go @@ -41,15 +41,6 @@ func TestnetGenesis() string { return string(enc) } -// RinkebyGenesis returns the JSON spec to use for the Rinkeby test network -func RinkebyGenesis() string { - enc, err := json.Marshal(core.DefaultRinkebyGenesisBlock()) - if err != nil { - panic(err) - } - return string(enc) -} - // FoundationBootnodes returns the enode URLs of the P2P bootstrap nodes operated // by the foundation running the V5 discovery protocol. func FoundationBootnodes() *Enodes { |