• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.tx/H31-Jul-2018-86

build-aux/m4/H31-Jul-2018-3,2012,870

contrib/H31-Jul-2018-12,31810,238

depends/H31-Jul-2018-5,8005,017

doc/H03-May-2022-12,1889,394

qa/H31-Jul-2018-21,37614,731

share/H31-Jul-2018-637527

src/H03-May-2022-302,908263,052

.gitattributesH A D31-Jul-201835 21

.gitignoreH A D31-Jul-20181.5 KiB11899

.travis.ymlH A D31-Jul-20184.2 KiB7470

CONTRIBUTING.mdH A D31-Jul-20188.9 KiB12573

COPYINGH A D31-Jul-20181.1 KiB2418

INSTALL.mdH A D31-Jul-2018165 64

Makefile.amH A D31-Jul-20188.7 KiB239174

README.mdH A D31-Jul-20182.4 KiB6243

autogen.shH A D31-Jul-2018527 1610

configure.acH A D03-May-202239.3 KiB1,152995

libbitcoinconsensus.pc.inH A D31-Jul-2018296 1210

README.md

1Zetacoin Core integration/staging tree
2======================================
3
4https://www.zetac.org
5
6What is Zetacoin?
7----------------
8
9Zetacoin is an experimental new digital currency that enables instant payments to
10anyone, anywhere in the world. Zetacoin uses peer-to-peer technology to operate
11with no central authority: managing transactions and issuing money are carried
12out collectively by the network. Zetacoin Core is the name of open source
13software which enables the use of this currency.
14
15For more information, as well as an immediately useable, binary version of
16the Zetacoin Core software, see https://www.zetac.org/.
17
18License
19-------
20
21Zetacoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more
22information or see http://opensource.org/licenses/MIT.
23
24Development Process
25-------------------
26
27Developers work in their own trees, then submit pull requests when they think
28their feature or bug fix is ready.
29
30If it is a simple/trivial/non-controversial change, then one of the Zetacoin
31development team members simply pulls it.
32
33The patch will be accepted if there is broad consensus that it is a good thing.
34Developers should expect to rework and resubmit patches if the code doesn't
35match the project's coding conventions (see [doc/developer-notes.md](doc/developer-notes.md)) or are
36controversial.
37
38The `master` branch is regularly built and tested, but is not guaranteed to be
39completely stable. [Tags](https://github.com/zetacoin/zetacoin/tags) are created
40regularly to indicate new official, stable release versions of Zetacoin.
41
42Testing
43-------
44
45### Automated Testing
46
47Developers are strongly encouraged to write [unit tests](/doc/unit-tests.md) for new code, and to
48submit new unit tests for old code. Unit tests can be compiled and run
49(assuming they weren't disabled in configure) with: `make check`
50
51There are also [regression and integration tests](/qa) of the RPC interface, written
52in Python, that are run automatically on the build server.
53These tests can be run (if the [test dependencies](/qa) are installed) with: `qa/pull-tester/rpc-tests.py`
54
55### Manual Quality Assurance (QA) Testing
56
57Changes should be tested by somebody other than the developer who wrote the
58code. This is especially important for large or high-risk changes. It is useful
59to add a test plan to the pull request description if testing the changes is
60not straightforward.
61
62