diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-20 17:01:15 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 9f56debcde5617d7bf13288b9bebca763e4fe234 (patch) | |
tree | 7eb11931614b546055aa63215bf671bb6f85cc93 /mobile | |
parent | b943825f9219bf26892f6f1ce2f107e8a5c47c74 (diff) | |
download | dexon-9f56debcde5617d7bf13288b9bebca763e4fe234.tar dexon-9f56debcde5617d7bf13288b9bebca763e4fe234.tar.gz dexon-9f56debcde5617d7bf13288b9bebca763e4fe234.tar.bz2 dexon-9f56debcde5617d7bf13288b9bebca763e4fe234.tar.lz dexon-9f56debcde5617d7bf13288b9bebca763e4fe234.tar.xz dexon-9f56debcde5617d7bf13288b9bebca763e4fe234.tar.zst dexon-9f56debcde5617d7bf13288b9bebca763e4fe234.zip |
Remove reference of Rinkeby network.
We do not need ethereum Rinkeby network in our system, remove it.
Diffstat (limited to 'mobile')
-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 { |