Skip to content

Commit

Permalink
RPC mining against zcashd initial version, no stratum support for now
Browse files Browse the repository at this point in the history
  • Loading branch information
omaralvarez committed Oct 12, 2016
1 parent 1ddff9a commit a195419
Show file tree
Hide file tree
Showing 1,139 changed files with 355,326 additions and 633 deletions.
135 changes: 114 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,125 @@
.DS_Store
test/repo-tests*
*.tar.gz

*.exe
src/bitcoin
src/zcashd
src/zcash-cli
src/zcash-gtest
src/zcash-miner
src/bitcoin-tx
src/test/test_bitcoin
src/qt/test/test_bitcoin-qt

# Zcash utilities
src/zcash/GenerateParams

*zcashTest.pk
*zcashTest.vk

# autoreconf
Makefile.in
aclocal.m4
autom4te.cache/
build-aux/config.guess
build-aux/config.sub
build-aux/depcomp
build-aux/install-sh
build-aux/ltmain.sh
build-aux/m4/libtool.m4
build-aux/m4/lt~obsolete.m4
build-aux/m4/ltoptions.m4
build-aux/m4/ltsugar.m4
build-aux/m4/ltversion.m4
build-aux/missing
build-aux/compile
build-aux/test-driver
config.log
config.status
configure
libtool
src/config/bitcoin-config.h
src/config/bitcoin-config.h.in
src/config/stamp-h1
share/setup.nsi
share/qt/Info.plist

src/univalue/gen

src/qt/*.moc
src/qt/moc_*.cpp
src/qt/forms/ui_*.h

src/qt/test/moc*.cpp

.deps
.dirstamp
.libs
.*.swp
*.*~*
*.bak
*.rej
*.orig
*.pyc
*.o
*.o-*
*.patch
.zcash
*.a
*.pb.cc
*.pb.h

# Logs
logs
*.log
*.trs
*.dmg

*.json.h
*.raw.h

# Runtime data
pids
*.pid
*.seed
#libtool object files
*.lo
*.la

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Compilation and Qt preprocessor part
*.qm
Makefile
bitcoin-qt
Bitcoin-Qt.app

# Coverage directory used by tools like istanbul
coverage
# Unit-tests
Makefile.test
bitcoin-qt_test
src/test/buildenv.py

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Resources cpp
qrc_*.cpp

# Qt creator
*.pro.user

# Mac specific
.DS_Store
build

# node-waf configuration
.lock-wscript
#lcov
*.gcno
*.gcda
/*.info
test_bitcoin.coverage/
zcash-gtest.coverage/
total.coverage/
coverage_percent.txt

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
#build tests
linux-coverage-build
linux-build
win32-build
qa/pull-tester/run-bitcoind-for-test.sh
qa/pull-tester/tests-config.sh
qa/pull-tester/cache/*
qa/pull-tester/test.*/*

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
!src/leveldb*/Makefile

/doc/doxygen/

libbitcoinconsensus.pc
7 changes: 7 additions & 0 deletions .tx/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[main]
host = https://www.transifex.com

[bitcoin.qt-translation-011x]
file_filter = src/qt/locale/bitcoin_<lang>.ts
source_file = src/qt/locale/bitcoin_en.ts
source_lang = en
20 changes: 20 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2016 The Zcash Core developers
Copyright (c) 2009-2015 The Bitcoin Core developers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
5 changes: 5 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Building Zcash

See doc/build-*.md for instructions on building zcashd,
the intended-for-services, no-graphical-interface, reference
implementation of Zcash.
Loading

0 comments on commit a195419

Please sign in to comment.