Skip to content

Commit

Permalink
Release v1.2.3.0: it will reject connects from old peers
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Semyonov committed Nov 2, 2018
1 parent 0c6aa2f commit 6d4ad99
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Argo Core staging tree 1.2.2.0
Argo Core staging tree 1.2.3.0
===============================

`master:` [![Build Status](https://travis-ci.org/argopay/argo.svg?branch=master)](https://travis-ci.org/argopay/argo) `develop:` [![Build Status](https://travis-ci.org/argopay/argo.svg?branch=develop)](https://travis-ci.org/argopay/argo/branches)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 2)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_REVISION, 3)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "argo-linux-1.2.2"
name: "argo-linux-1.2.3"
enable_cache: true
suites:
- "trusty"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-osx.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "argo-osx-1.2.2"
name: "argo-osx-1.2.3"
enable_cache: true
suites:
- "trusty"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-rpi2.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "argo-raspberry-1.2.2"
name: "argo-raspberry-1.2.3"
enable_cache: true
suites:
- "precise"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-win.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "argo-win-1.2.2"
name: "argo-win-1.2.3"
enable_cache: true
suites:
- "trusty"
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ PROJECT_NAME = "Argo Core"
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 1.2.2.0
PROJECT_NUMBER = 1.2.3.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer
Expand Down
4 changes: 2 additions & 2 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ class CMainParams : public CChainParams {
assert(genesis.hashMerkleRoot == uint256S("0x75a67463b386bb01fdea1160f4fad1c8cabd6cd86cdd76cd3a4c23af8cf71103"));

// Until new domain is acquired, fixed trusted IP addresses are used to bootstrap
vSeeds.push_back(CDNSSeedData("argocash.com", "45.77.99.107"));
vSeeds.push_back(CDNSSeedData("argocash.com", "144.202.39.176"));
vSeeds.push_back(CDNSSeedData("swap.argocash.com", "217.182.226.71"));
vSeeds.push_back(CDNSSeedData("swap.argocash.com", "149.28.33.15"));

// Argo addresses start with 'A'
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,23);
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static const int INIT_PROTO_VERSION = 209;
static const int GETHEADERS_VERSION = 70077;

//! disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 70208;
static const int MIN_PEER_PROTO_VERSION = 70209;

//! nTime field added to CAddress, starting with this version;
//! if possible, avoid requesting addresses nodes older than this
Expand Down

0 comments on commit 6d4ad99

Please sign in to comment.