Skip to content

Commit 5ccfb00

Browse files
authored
Merge pull request jl777#294 from VerusCoin/master
Sync trees
2 parents d59e7c3 + 1224571 commit 5ccfb00

File tree

9 files changed

+12
-9
lines changed

9 files changed

+12
-9
lines changed

Diff for: .gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ stages:
77
########################################################################################################################
88
variables:
99

10-
VERSION: 1.2.2
10+
VERSION: 1.2.2-1
1111

1212
VERUS_CLI_ARM64_LINUX: Verus-CLI-Linux-v${VERSION}-arm64.tar.gz
1313
VERUS_CLI_LINUX_X86_64: Verus-CLI-Linux-v${VERSION}-x86_64.tar.gz

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
## VerusCoin version 1.2.2
2+
## VerusCoin version 1.2.2-1
33

44
Arguably the world's most advanced technology, zero knowledge privacy enabled, multi-chain blockchain protocol, Verus Public Blockchains as a Service (PBaaS) combines Sapling zero knowledge technology with an intelligent, multi-chain, provable protocol, using interchain smart transactions. Verus PBaaS also enables merge mining and cross-chain staking with a completely original, combined proof of stake/proof of work consensus algorithm, Proof of Power, that can be mined on CPUs and mobile phones, and also solves the nothing at stake problem. With this and its approach towards CPU mining and ASICs, Verus Coin strives to be one of the most naturally decentralizing and attack resistant blockchain networks in existence.
55

Diff for: doc/man/verus-cli/linux/README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
VerusCoin Command Line Tools v1.2.2
2+
VerusCoin Command Line Tools v1.2.2-1
33

44
Contents:
55
verusd - VerusCoin daemon

Diff for: doc/man/verus-cli/mac/README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
VerusCoin Command Line Tools v1.2.2
2+
VerusCoin Command Line Tools v1.2.2-1
33

44
Contents:
55
verusd - VerusCoin daemon.

Diff for: doc/man/verus-cli/windows/README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
VerusCoin Command Line Tools v1.2.2
2+
VerusCoin Command Line Tools v1.2.2-1
33

44
Contents:
55
verusd.exe - VerusCoin daemon

Diff for: src/deprecation.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// * Shut down 52 weeks' worth of blocks after the estimated release block height.
1010
// * A warning is shown during the 2 months' worth of blocks prior to shut down.
1111

12-
static const int APPROX_RELEASE_HEIGHT = 2978000;
12+
static const int APPROX_RELEASE_HEIGHT = 2989000;
1313

1414
static const int WEEKS_UNTIL_DEPRECATION = 52;
1515
static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 60 * 24);

Diff for: src/pbaas/notarization.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1389,13 +1389,16 @@ bool CPBaaSNotarization::NextNotarizationInfo(const CCurrencyDefinition &sourceS
13891389
{
13901390
bool initialPBaaSStart = destCurrency.IsGatewayConverter() || destCurrency.IsPBaaSChain();
13911391

1392-
// the first block executes the second time through
13931392
if (newNotarization.IsLaunchCleared())
13941393
{
13951394
newNotarization.SetPreLaunch(false);
13961395
newNotarization.currencyState.SetLaunchClear();
13971396
newNotarization.currencyState.SetPrelaunch(false);
13981397
newNotarization.currencyState.RevertReservesAndSupply(destCurrency, destCurrency.systemID, initialPBaaSStart, reversionUpdate);
1398+
if (destCurrency.IsPBaaSChain())
1399+
{
1400+
newNotarization.currencyState.supply = 0;
1401+
}
13991402
}
14001403
else
14011404
{

Diff for: src/pbaas/reserves.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6878,7 +6878,7 @@ void CCoinbaseCurrencyState::RevertReservesAndSupply(const CCurrencyDefinition &
68786878
IsLaunchClear() &&
68796879
!IsPrelaunch() &&
68806880
(revertCur.IsGatewayConverter() || reversionUpdate >= ReversionUpdate::PBAAS_1_0_12) &&
6881-
(!PBAAS_TESTMODE || reserves[reserveMap[systemID]] == revertCur.gatewayConverterIssuance))
6881+
(!pbaasInitialChainCurrency || reserves[reserveMap[systemID]] == revertCur.gatewayConverterIssuance))
68826882
{
68836883
fees = std::vector<int64_t>(fees.size(), 0);
68846884
conversionFees = std::vector<int64_t>(conversionFees.size(), 0);

Diff for: src/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ static const int MEMPOOL_GD_VERSION = 60002;
3535
static const int NO_BLOOM_VERSION = 170004;
3636

3737
#define KOMODO_VERSION "0.2.1"
38-
#define VERUS_VERSION "1.2.2"
38+
#define VERUS_VERSION "1.2.2-1"
3939

4040
#endif // BITCOIN_VERSION_H

0 commit comments

Comments
 (0)