Skip to content

Commit

Permalink
Merge pull request #353 from pocketnetteam/WorkFlowTagSuffix
Browse files Browse the repository at this point in the history
  • Loading branch information
andyoknen authored Aug 10, 2022
2 parents 427b6e9 + f6b7928 commit a3d345b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build & Deploy Release Draft

on:
push:
tags: v*.*.*
tags: '*.*.*'

permissions:
contents: read
Expand Down Expand Up @@ -157,4 +157,4 @@ jobs:
# with:
# name: bastyon.tgz
# - name: Unpack artifact
# run: tar xzf bastyon.tgz -C /data/gui/ --no-same-owner
# run: tar xzf bastyon.tgz -C /data/gui/ --no-same-owner
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)

set(_CLIENT_VERSION_MAJOR 0)
set(_CLIENT_VERSION_MINOR 20)
set(_CLIENT_VERSION_REVISION 25)
set(_CLIENT_VERSION_REVISION 26)
set(_CLIENT_VERSION_BUILD 0)
set(_CLIENT_VERSION_IS_RELEASE false)
set(_COPYRIGHT_YEAR 2022)
Expand Down
6 changes: 3 additions & 3 deletions build_msvc/pocketcoin_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define CLIENT_VERSION_MINOR 20

/* Build revision */
#define CLIENT_VERSION_REVISION 25
#define CLIENT_VERSION_REVISION 26

/* Version Build */
#define CLIENT_VERSION_BUILD 0
Expand Down Expand Up @@ -346,7 +346,7 @@
#define PACKAGE_NAME "Pocketnet Core"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Pocketnet Core 0.20.25"
#define PACKAGE_STRING "Pocketnet Core 0.20.26"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pocketcoin"
Expand All @@ -355,7 +355,7 @@
#define PACKAGE_URL "https://github.com/pocketnetteam"

/* Define to the version of this package. */
#define PACKAGE_VERSION "0.20.25"
#define PACKAGE_VERSION "0.20.26"

/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
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, 0)
define(_CLIENT_VERSION_MINOR, 20)
define(_CLIENT_VERSION_REVISION, 25)
define(_CLIENT_VERSION_REVISION, 26)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2022)
Expand Down
4 changes: 2 additions & 2 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ class CMainParams : public CChainParams
consensus.nHeight_version_1_0_0 = 108300;

// The best chain should have at least this much work.
consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000003e0ce94c0f07fc1cea"); // 1761588
consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000042562b809c77f04d32"); // 1823308

// By default assume that the signatures in ancestors of this block are valid.
consensus.defaultAssumeValid = uint256S("0x7d49542fc498f0bfcb5201df6e244377d3e8d9f1bb7c0646ec8f7d9a2c4705e0"); // 1761588
consensus.defaultAssumeValid = uint256S("0xaa99e5339b327bc5ba0fd7b1f4e37f440feb0f675489cace27990831b8944d34"); // 1823308

/**
* The message start string is designed to be unlikely to occur in normal data.
Expand Down

0 comments on commit a3d345b

Please sign in to comment.