Skip to content

Commit

Permalink
release genesis block
Browse files Browse the repository at this point in the history
  • Loading branch information
kami committed Jan 2, 2020
1 parent 6628cdd commit 5547659
Show file tree
Hide file tree
Showing 40 changed files with 2,858 additions and 2,858 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Expand Up @@ -49,20 +49,20 @@ for(int i = 0; i < targets.size(); i++) {
// restore cache
def hasCache = false
try {
copyArtifacts(projectName: "kashpay-kash/${BRANCH_NAME}", optional: true, selector: lastSuccessful(), filter: "ci-cache-${target}.tar.gz")
copyArtifacts(projectName: "jsb4ch-kash/${BRANCH_NAME}", optional: true, selector: lastSuccessful(), filter: "ci-cache-${target}.tar.gz")
} catch (Exception e) {
}
if (fileExists("ci-cache-${target}.tar.gz")) {
hasCache = true
echo "Using cache from kashpay-kash/${BRANCH_NAME}"
echo "Using cache from jsb4ch-kash/${BRANCH_NAME}"
} else {
try {
copyArtifacts(projectName: 'kashpay-kash/develop', optional: true, selector: lastSuccessful(), filter: "ci-cache-${target}.tar.gz");
copyArtifacts(projectName: 'jsb4ch-kash/develop', optional: true, selector: lastSuccessful(), filter: "ci-cache-${target}.tar.gz");
} catch (Exception e) {
}
if (fileExists("ci-cache-${target}.tar.gz")) {
hasCache = true
echo "Using cache from kashpay-kash/develop"
echo "Using cache from jsb4ch-kash/develop"
}
}

Expand Down
12 changes: 6 additions & 6 deletions Jenkinsfile.gitian
Expand Up @@ -11,7 +11,7 @@ def OSX_SDK='10.11'
def proc = 4
def mem = 2000

def repositoryUrl = "https://github.com/kashpay/kash.git"
def repositoryUrl = "https://github.com/jsb4ch/kash.git"

def tasks = [:]
for(int i = 0; i < targets.size(); i++) {
Expand All @@ -35,7 +35,7 @@ for(int i = 0; i < targets.size(); i++) {
gitianDescriptor = readYaml file: "contrib/gitian-descriptors/gitian-${target}.yml"
}
dir('gitian-builder') {
git url: 'https://github.com/kashpay/gitian-builder.git'
git url: 'https://github.com/jsb4ch/gitian-builder.git'
}
sh "mkdir -p kashcore-binaries"
if (target == "osx") {
Expand All @@ -47,20 +47,20 @@ for(int i = 0; i < targets.size(); i++) {

// restore cache
try {
copyArtifacts(projectName: "kashpay-kash-gitian-nightly/${BRANCH_NAME}", optional: true, selector: lastSuccessful(), filter: "cache-${gitianDescriptor.name}.tar.gz")
copyArtifacts(projectName: "jsb4ch-kash-gitian-nightly/${BRANCH_NAME}", optional: true, selector: lastSuccessful(), filter: "cache-${gitianDescriptor.name}.tar.gz")
} catch (Exception e) {
}
if (fileExists("cache-${gitianDescriptor.name}.tar.gz")) {
hasCache = true
echo "Using cache from kashpay-kash-gitian-nightly/${BRANCH_NAME}"
echo "Using cache from jsb4ch-kash-gitian-nightly/${BRANCH_NAME}"
} else {
try {
copyArtifacts(projectName: 'kashpay-kash-gitian-nightly/develop', optional: true, selector: lastSuccessful(), filter: "cache-${gitianDescriptor.name}.tar.gz");
copyArtifacts(projectName: 'jsb4ch-kash-gitian-nightly/develop', optional: true, selector: lastSuccessful(), filter: "cache-${gitianDescriptor.name}.tar.gz");
} catch (Exception e) {
}
if (fileExists("cache-${gitianDescriptor.name}.tar.gz")) {
hasCache = true
echo "Using cache from kashpay-kash-gitian-nightly/develop"
echo "Using cache from jsb4ch-kash-gitian-nightly/develop"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
Kash Core staging tree 0.14.0
===============================

`master:` [![Build Status](https://travis-ci.org/kashpay/kash.svg?branch=master)](https://travis-ci.org/kashpay/kash) `develop:` [![Build Status](https://travis-ci.org/kashpay/kash.svg?branch=develop)](https://travis-ci.org/kashpay/kash/branches)
`master:` [![Build Status](https://travis-ci.org/jsb4ch/kash.svg?branch=master)](https://travis-ci.org/jsb4ch/kash) `develop:` [![Build Status](https://travis-ci.org/jsb4ch/kash.svg?branch=develop)](https://travis-ci.org/jsb4ch/kash/branches)

https://www.kashcore.org

Expand Down Expand Up @@ -29,7 +29,7 @@ Development Process
-------------------

The `master` branch is meant to be stable. Development is normally done in separate branches.
[Tags](https://github.com/kashpay/kash/tags) are created to indicate new official,
[Tags](https://github.com/jsb4ch/kash/tags) are created to indicate new official,
stable release versions of Kash Core.

The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md).
Expand Down
2 changes: 1 addition & 1 deletion ci/Dockerfile.builder
Expand Up @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y python3-pip
RUN pip3 install pyzmq # really needed?

# kash_hash
RUN git clone https://github.com/kashpay/kash_hash
RUN git clone https://github.com/jsb4ch/kash_hash
RUN cd kash_hash && python3 setup.py install

ARG USER_ID=1000
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
@@ -1,14 +1,14 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 14)
define(_CLIENT_VERSION_MINOR, 15)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 5)
define(_CLIENT_VERSION_BUILD, 1)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2019)
define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Kash Core]])
AC_INIT([Kash Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/kashpay/kash/issues],[kashcore],[https://kashcore.org/])
AC_INIT([Kash Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/jsb4ch/kash/issues],[kashcore],[https://kashcore.org/])
AC_CONFIG_SRCDIR([src/validation.cpp])
AC_CONFIG_HEADERS([src/config/kash-config.h])
AC_CONFIG_AUX_DIR([build-aux])
Expand Down
10 changes: 5 additions & 5 deletions doc/gitian-building.md
Expand Up @@ -309,8 +309,8 @@ Clone the git repositories for Kash Core and Gitian.

```bash
git clone https://github.com/devrandom/gitian-builder.git
git clone https://github.com/kashpay/kash
git clone https://github.com/kashpay/gitian.sigs.git
git clone https://github.com/jsb4ch/kash
git clone https://github.com/jsb4ch/gitian.sigs.git
```

Setting up the Gitian image
Expand Down Expand Up @@ -376,7 +376,7 @@ Output from `gbuild` will look something like
remote: Total 57959 (delta 0), reused 0 (delta 0), pack-reused 57958
Receiving objects: 100% (57959/57959), 53.76 MiB | 484.00 KiB/s, done.
Resolving deltas: 100% (41590/41590), done.
From https://github.com/kashpay/kash
From https://github.com/jsb4ch/kash
... (new tags, new branch etc)
--- Building for bionic amd64 ---
Stopping target if it is up
Expand Down Expand Up @@ -452,7 +452,7 @@ Then when building, override the remote URLs that gbuild would otherwise pull fr
```bash
cd /some/root/path/
git clone https://github.com/kashpay/kash-detached-sigs.git
git clone https://github.com/jsb4ch/kash-detached-sigs.git
BTCPATH=/some/root/path/kash
SIGPATH=/some/root/path/kash-detached-sigs
Expand Down Expand Up @@ -484,6 +484,6 @@ Uploading signatures (not yet implemented)
---------------------
In the future it will be possible to push your signatures (both the `.assert` and `.assert.sig` files) to the
[kash/gitian.sigs](https://github.com/kashpay/gitian.sigs/) repository, or if that's not possible to create a pull
[kash/gitian.sigs](https://github.com/jsb4ch/gitian.sigs/) repository, or if that's not possible to create a pull
request.
There will be an official announcement when this repository is online.
4 changes: 2 additions & 2 deletions doc/instantsend.md
Expand Up @@ -12,8 +12,8 @@ When a "Transaction Lock" occurs the hash of the related transaction is broadcas
* `zmqpubhashtxlock`: publishes the transaction hash when locked via InstantSend

This mechanism has been integrated into Bitcore-Node-Kash which allows for notification to be broadcast through Insight API in one of two ways:
* WebSocket: [https://github.com/kashpay/insight-api-kash#web-socket-api](https://github.com/kashpay/insight-api-kash#web-socket-api)
* API: [https://github.com/kashpay/insight-api-kash#instantsend-transactions](https://github.com/kashpay/insight-api-kash#instantsend-transactions)
* WebSocket: [https://github.com/jsb4ch/insight-api-kash#web-socket-api](https://github.com/jsb4ch/insight-api-kash#web-socket-api)
* API: [https://github.com/jsb4ch/insight-api-kash#instantsend-transactions](https://github.com/jsb4ch/insight-api-kash#instantsend-transactions)

#### Command line option

Expand Down
2 changes: 1 addition & 1 deletion doc/man/kash-cli.1
Expand Up @@ -81,7 +81,7 @@ Copyright (C) 2009-2019 The Bitcoin Core developers

Please contribute if you find Kash Core useful. Visit <https://kashcore.org> for
further information about the software.
The source code is available from <https://github.com/kashpay/kash>.
The source code is available from <https://github.com/jsb4ch/kash>.

This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
Expand Down
2 changes: 1 addition & 1 deletion doc/man/kash-qt.1
Expand Up @@ -698,7 +698,7 @@ Copyright (C) 2009-2019 The Bitcoin Core developers

Please contribute if you find Kash Core useful. Visit <https://kashcore.org> for
further information about the software.
The source code is available from <https://github.com/kashpay/kash>.
The source code is available from <https://github.com/jsb4ch/kash>.

This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
Expand Down
2 changes: 1 addition & 1 deletion doc/man/kash-tx.1
Expand Up @@ -113,7 +113,7 @@ Copyright (C) 2009-2019 The Bitcoin Core developers

Please contribute if you find Kash Core useful. Visit <https://kashcore.org> for
further information about the software.
The source code is available from <https://github.com/kashpay/kash>.
The source code is available from <https://github.com/jsb4ch/kash>.

This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
Expand Down
2 changes: 1 addition & 1 deletion doc/man/kashd.1
Expand Up @@ -673,7 +673,7 @@ Copyright (C) 2009-2019 The Bitcoin Core developers

Please contribute if you find Kash Core useful. Visit <https://kashcore.org> for
further information about the software.
The source code is available from <https://github.com/kashpay/kash>.
The source code is available from <https://github.com/jsb4ch/kash>.

This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
Expand Down
78 changes: 39 additions & 39 deletions doc/release-notes.md
Expand Up @@ -11,7 +11,7 @@ fix for a possible DoS vector.

Please report bugs using the issue tracker at github:

<https://github.com/kashpay/kash/issues>
<https://github.com/jsb4ch/kash/issues>


Upgrading and downgrading
Expand Down Expand Up @@ -66,21 +66,21 @@ known in the network. This should cause ChainLocks to succeed in such situations
0.14.0.5 Change log
===================

See detailed [set of changes](https://github.com/kashpay/kash/compare/v0.14.0.4...kashpay:v0.14.0.5).

- [`20d4a27778`](https://github.com/kashpay/kash/commit/dc07a0c5e1) Make sure mempool txes are properly processed by CChainLocksHandler despite node restarts (#3230)
- [`dc07a0c5e1`](https://github.com/kashpay/kash/commit/dc07a0c5e1) [v0.14.0.x] Bump version and prepare release notes (#3228)
- [`401da32090`](https://github.com/kashpay/kash/commit/401da32090) More fixes in llmq-is-retroactive tests
- [`33721eaa11`](https://github.com/kashpay/kash/commit/33721eaa11) Make llmq-is-retroactive test compatible with 0.14.0.x
- [`85bd162a3e`](https://github.com/kashpay/kash/commit/85bd162a3e) Make wait_for_xxx methods compatible with 0.14.0.x
- [`22cfddaf12`](https://github.com/kashpay/kash/commit/22cfddaf12) Allow re-signing of IS locks when performing retroactive signing (#3219)
- [`a8b8891a1d`](https://github.com/kashpay/kash/commit/a8b8891a1d) Add wait_for_xxx methods as found in develop
- [`8dae12cc60`](https://github.com/kashpay/kash/commit/8dae12cc60) More/better logging for InstantSend
- [`fdd19cf667`](https://github.com/kashpay/kash/commit/fdd19cf667) Tests: Fix the way nodes are connected to each other in setup_network/start_masternodes (#3221)
- [`41f0e9d028`](https://github.com/kashpay/kash/commit/41f0e9d028) More fixes related to extra_args
- [`5213118601`](https://github.com/kashpay/kash/commit/5213118601) Tests: Allow specifying different cmd-line params for each masternode (#3222)
- [`2fef21fd80`](https://github.com/kashpay/kash/commit/2fef21fd80) Don't join thread in CQuorum::~CQuorum when called from within the thread (#3223)
- [`e69c6c3207`](https://github.com/kashpay/kash/commit/e69c6c3207) Merge #12392: Fix ignoring tx data requests when fPauseSend is set on a peer (#3225)
See detailed [set of changes](https://github.com/jsb4ch/kash/compare/v0.14.0.4...jsb4ch:v0.14.0.5).

- [`20d4a27778`](https://github.com/jsb4ch/kash/commit/dc07a0c5e1) Make sure mempool txes are properly processed by CChainLocksHandler despite node restarts (#3230)
- [`dc07a0c5e1`](https://github.com/jsb4ch/kash/commit/dc07a0c5e1) [v0.14.0.x] Bump version and prepare release notes (#3228)
- [`401da32090`](https://github.com/jsb4ch/kash/commit/401da32090) More fixes in llmq-is-retroactive tests
- [`33721eaa11`](https://github.com/jsb4ch/kash/commit/33721eaa11) Make llmq-is-retroactive test compatible with 0.14.0.x
- [`85bd162a3e`](https://github.com/jsb4ch/kash/commit/85bd162a3e) Make wait_for_xxx methods compatible with 0.14.0.x
- [`22cfddaf12`](https://github.com/jsb4ch/kash/commit/22cfddaf12) Allow re-signing of IS locks when performing retroactive signing (#3219)
- [`a8b8891a1d`](https://github.com/jsb4ch/kash/commit/a8b8891a1d) Add wait_for_xxx methods as found in develop
- [`8dae12cc60`](https://github.com/jsb4ch/kash/commit/8dae12cc60) More/better logging for InstantSend
- [`fdd19cf667`](https://github.com/jsb4ch/kash/commit/fdd19cf667) Tests: Fix the way nodes are connected to each other in setup_network/start_masternodes (#3221)
- [`41f0e9d028`](https://github.com/jsb4ch/kash/commit/41f0e9d028) More fixes related to extra_args
- [`5213118601`](https://github.com/jsb4ch/kash/commit/5213118601) Tests: Allow specifying different cmd-line params for each masternode (#3222)
- [`2fef21fd80`](https://github.com/jsb4ch/kash/commit/2fef21fd80) Don't join thread in CQuorum::~CQuorum when called from within the thread (#3223)
- [`e69c6c3207`](https://github.com/jsb4ch/kash/commit/e69c6c3207) Merge #12392: Fix ignoring tx data requests when fPauseSend is set on a peer (#3225)

Credits
=======
Expand Down Expand Up @@ -115,27 +115,27 @@ Kash Core tree 0.12.1.x was a fork of Bitcoin Core tree 0.12.

These release are considered obsolete. Old release notes can be found here:

- [v0.14.0.4](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.4.md) released November/22/2019
- [v0.14.0.3](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.3.md) released August/15/2019
- [v0.14.0.2](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.2.md) released July/4/2019
- [v0.14.0.1](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.1.md) released May/31/2019
- [v0.14.0](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.md) released May/22/2019
- [v0.13.3](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.13.3.md) released Apr/04/2019
- [v0.13.2](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.13.2.md) released Mar/15/2019
- [v0.13.1](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.13.1.md) released Feb/9/2019
- [v0.13.0](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.13.0.md) released Jan/14/2019
- [v0.12.3.4](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.3.4.md) released Dec/14/2018
- [v0.12.3.3](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.3.3.md) released Sep/19/2018
- [v0.12.3.2](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.3.2.md) released Jul/09/2018
- [v0.12.3.1](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.3.1.md) released Jul/03/2018
- [v0.12.2.3](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.2.3.md) released Jan/12/2018
- [v0.12.2.2](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.2.2.md) released Dec/17/2017
- [v0.12.2](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.2.md) released Nov/08/2017
- [v0.12.1](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.1.md) released Feb/06/2017
- [v0.12.0](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.12.0.md) released Aug/15/2015
- [v0.11.2](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.11.2.md) released Mar/04/2015
- [v0.11.1](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.11.1.md) released Feb/10/2015
- [v0.11.0](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.11.0.md) released Jan/15/2015
- [v0.10.x](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.10.0.md) released Sep/25/2014
- [v0.9.x](https://github.com/kashpay/kash/blob/master/doc/release-notes/kash/release-notes-0.9.0.md) released Mar/13/2014
- [v0.14.0.4](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.4.md) released November/22/2019
- [v0.14.0.3](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.3.md) released August/15/2019
- [v0.14.0.2](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.2.md) released July/4/2019
- [v0.14.0.1](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.1.md) released May/31/2019
- [v0.14.0](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.14.0.md) released May/22/2019
- [v0.13.3](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.13.3.md) released Apr/04/2019
- [v0.13.2](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.13.2.md) released Mar/15/2019
- [v0.13.1](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.13.1.md) released Feb/9/2019
- [v0.13.0](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.13.0.md) released Jan/14/2019
- [v0.12.3.4](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.3.4.md) released Dec/14/2018
- [v0.12.3.3](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.3.3.md) released Sep/19/2018
- [v0.12.3.2](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.3.2.md) released Jul/09/2018
- [v0.12.3.1](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.3.1.md) released Jul/03/2018
- [v0.12.2.3](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.2.3.md) released Jan/12/2018
- [v0.12.2.2](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.2.2.md) released Dec/17/2017
- [v0.12.2](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.2.md) released Nov/08/2017
- [v0.12.1](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.1.md) released Feb/06/2017
- [v0.12.0](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.12.0.md) released Aug/15/2015
- [v0.11.2](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.11.2.md) released Mar/04/2015
- [v0.11.1](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.11.1.md) released Feb/10/2015
- [v0.11.0](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.11.0.md) released Jan/15/2015
- [v0.10.x](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.10.0.md) released Sep/25/2014
- [v0.9.x](https://github.com/jsb4ch/kash/blob/master/doc/release-notes/kash/release-notes-0.9.0.md) released Mar/13/2014

2 changes: 1 addition & 1 deletion doc/release-notes/kash/release-notes-0.11.2.md
Expand Up @@ -3,7 +3,7 @@

Kash Core version 0.11.2 is now available from:

https://kashpay.io/downloads
https://jsb4ch.io/downloads

Please report bugs using the issue tracker at github:

Expand Down

0 comments on commit 5547659

Please sign in to comment.