Skip to content

Commit

Permalink
Update seeds and version
Browse files Browse the repository at this point in the history
  • Loading branch information
metalicjames committed Dec 5, 2016
1 parent 79f3ace commit 5de3250
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Vertcoin integration/staging tree

http://www.vertcoin.org

Copyright (c) 2009-2013 Bitcoin Developers
Copyright (c) 2011-2013 Litecoin Developers
Copyright (c) 2014-2015 Vertcoin Developers
Copyright 2009-2013 Bitcoin Developers
Copyright 2011-2013 Litecoin Developers
Copyright 2014-2016 Vertcoin Developers

What is Vertcoin?
----------------
Expand Down
2 changes: 1 addition & 1 deletion share/setup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma

# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
!define VERSION 0.10.0.1
!define VERSION 0.10.0.2
!define COMPANY "Vertcoin project"
!define URL https://www.vertcoin.org/

Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 10
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 1
#define CLIENT_VERSION_BUILD 2

// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand Down
8 changes: 3 additions & 5 deletions src/net.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1171,15 +1171,13 @@ void MapPort(bool)
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strMainNetDNSSeed[][2] = {
{"verters.com","verters.com"},
{"vtc.p2pool.pl", "vtc.p2pool.pl"},
{"nz.nutty.one","nz.nutty.one"},
{"useast1.vtconline.org","useast1.vtconline.org"},
{"fr1.vtconline.org", "fr1.vtconline.org"},
{"uk1.vtconline.org","uk1.vtconline.org"},
{NULL, NULL}
};

static const char *strTestNetDNSSeed[][2] = {
{"test.vtc.sovereignshare.com", "test.vtc.sovereignshare.com"},
{"wil-vtc01.greenpool.org.uk","wil-vtc01.greenpool.org.uk"},
{NULL, NULL}
};

Expand Down
2 changes: 1 addition & 1 deletion vertcoin-qt-mingw32.static.pro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TEMPLATE = app
TARGET = vertcoin-qt
macx:TARGET = "Vertcoin-Qt"
VERSION = 0.10.0.1
VERSION = 0.10.0.2
INCLUDEPATH += src src/json src/qt
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
Expand Down
2 changes: 1 addition & 1 deletion vertcoin-qt.pro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TEMPLATE = app
TARGET = vertcoin-qt
macx:TARGET = "Vertcoin-Qt"
VERSION = 0.10.0.1
VERSION = 0.10.0.2
INCLUDEPATH += src src/json src/qt
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
Expand Down

0 comments on commit 5de3250

Please sign in to comment.