Skip to content

Commit

Permalink
Add httpseed.bitcoin.schildbach.de to HTTP seeds.
Browse files Browse the repository at this point in the history
  • Loading branch information
schildbach committed Aug 22, 2015
1 parent a8edae0 commit 021b0d7
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions core/src/main/java/org/bitcoinj/params/MainNetParams.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* Copyright 2013 Google Inc.
* Copyright 2015 Andreas Schildbach
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,7 +17,6 @@

package org.bitcoinj.params;

import com.google.common.io.*;
import org.bitcoinj.core.*;
import org.bitcoinj.net.discovery.*;

Expand Down Expand Up @@ -78,12 +78,15 @@ public MainNetParams() {
"seed.bitnodes.io", // Addy Yeow
};
httpSeeds = new HttpDiscovery.Details[] {
// Mike Hearn
new HttpDiscovery.Details(
ECKey.fromPublicOnly(BaseEncoding.base16().decode(
"027a79143a4de36341494d21b6593015af6b2500e720ad2eda1c0b78165f4f38c4".toUpperCase()
)),

ECKey.fromPublicOnly(Utils.HEX.decode("027a79143a4de36341494d21b6593015af6b2500e720ad2eda1c0b78165f4f38c4")),
URI.create("http://main.seed.vinumeris.com/peers")
),
// Andreas Schildbach
new HttpDiscovery.Details(
ECKey.fromPublicOnly(Utils.HEX.decode("0238746c59d46d5408bf8b1d0af5740fe1a6e1703fcb56b2953f0b965c740d256f")),
URI.create("http://httpseed.bitcoin.schildbach.de/peers")
)
};

Expand Down

0 comments on commit 021b0d7

Please sign in to comment.