Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
New UpdateFX and new signing key that is password protected, will tra…
Browse files Browse the repository at this point in the history
…nsition to it completely once test users are upgraded.
  • Loading branch information
mikehearn committed Dec 9, 2014
1 parent 4d622a8 commit be27239
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions client/src/main/java/lighthouse/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,17 @@
public class Main extends Application {
public static final Logger log = LoggerFactory.getLogger(Main.class);

// This is an UpdateFX version code. It's incremented monotonically after a new version is released via
// auto update.
public static final int VERSION = 17;
public static final String APP_NAME = "Lighthouse";

// UpdateFX stuff. Version is incremented monotonically after a new version is released.
public static final int VERSION = 17;
public static final String UPDATES_BASE_URL = "https://www.vinumeris.com/lighthouse/updates";
public static final List<ECPoint> UPDATE_SIGNING_KEYS = Crypto.decode("02A3CDE5D0EDC281637C67AA67C0CB009EA6573E0F101C6E018ACB91393C08C129");
public static final List<ECPoint> UPDATE_SIGNING_KEYS = Crypto.decode(
// Two keys during temporary transition from a key that was not password protected to one that is.
// At release the old key will be removed.
"02A3CDE5D0EDC281637C67AA67C0CB009EA6573E0F101C6E018ACB91393C08C129", // old
"02AA4D7E966BFA942D3BEABD2049A49DB6AE92C417D8837C328BC02F8B50411A97" // new
);
public static final int UPDATE_SIGNING_THRESHOLD = 1;

public static NetworkParameters params;
Expand Down
Binary file modified tools/updatefx.jar
Binary file not shown.

0 comments on commit be27239

Please sign in to comment.