Skip to content

Commit

Permalink
Ultra prune PirateCash v11 to v18 based on CosantaCore
Browse files Browse the repository at this point in the history
  • Loading branch information
gades committed Dec 14, 2023
1 parent 82facdc commit 9dca6fb
Show file tree
Hide file tree
Showing 2,521 changed files with 447,470 additions and 361,573 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
@@ -0,0 +1,4 @@
**
!contrib/containers/ci/Dockerfile
!contrib/containers/deploy/Dockerfile
!contrib/containers/develop/Dockerfile
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
src/clientversion.cpp export-subst
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE.md
@@ -0,0 +1,37 @@
<!--- Remove sections that do not apply -->

This issue tracker is only for technical issues related to PirateCash Core.

General Dash questions and/or support requests and are best directed to the [Dashpay Reddit](https://www.reddit.com/r/dashpay/).

To report critical security issues, email infosec@dash.org and/or see the COSANTA bug bounty program on [Bugcrowd](https://bugcrowd.com/cosantadigitalcash) instead of creating Github issues.

### Describe the issue

### Can you reliably reproduce the issue?
#### If so, please list the steps to reproduce below:
1.
2.
3.

### Expected behaviour
Tell us what should happen

### Actual behaviour
Tell us what happens instead

### Screenshots.
If the issue is related to the GUI, screenshots can be added to this issue via drag & drop.

### What version of PirateCash Core are you using?
List the version number/commit ID, and if it is an official binary, self compiled or a distribution package such as PPA.

### Machine specs:
- OS:
- CPU:
- RAM:
- Disk size:
- Disk Type (HD/SDD):

### Any extra information that might be useful in the debugging process.
This is normally the contents of a `debug.log` or `config.log` file. Raw text or a link to a pastebin type site are preferred.
117 changes: 97 additions & 20 deletions .gitignore
Expand Up @@ -6,16 +6,46 @@ reset-files.bash
*.tar.gz

*.exe
src/madcoin
src/piratecash
src/piratecashd
src/piratecash-cli
src/piratecash-tx
src/piratecash-wallet
src/test/fuzz
!src/test/fuzz/*.*
src/test/test_piratecash
src/qt/test/test_piratecash-qt
src/qt/res/css/colors/*
src/bench/bench_piratecash

# 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/piratecash-config.h
src/config/piratecash-config.h.in
src/config/stamp-h1
share/setup.nsi
share/qt/Info.plist

src/univalue/gen

src/qt/*.moc
src/qt/moc_*.cpp
Expand All @@ -24,22 +54,6 @@ src/qt/forms/ui_*.h
src/qt/test/moc*.cpp
libconftest.dylib*

madcoin.pro.user

src/secp256k1/build-aux/compile
src/secp256k1/build-aux/config.guess
src/secp256k1/build-aux/config.sub
src/secp256k1/build-aux/depcomp
src/secp256k1/build-aux/install-sh
src/secp256k1/build-aux/ltmain.sh
src/secp256k1/build-aux/m4/libtool.m4
src/secp256k1/build-aux/m4/ltoptions.m4
src/secp256k1/build-aux/m4/ltsugar.m4
src/secp256k1/build-aux/m4/ltversion.m4
src/secp256k1/build-aux/m4/lt~obsolete.m4
src/secp256k1/build-aux/missing
src/secp256k1/build-aux/test-driver

.deps
.dirstamp
.libs
Expand All @@ -51,25 +65,88 @@ src/secp256k1/build-aux/test-driver
*.pyc
*.o
*.o-*
*.patch
*.a
*.pb.cc
*.pb.h
*.dat

*.log
*.trs
*.dmg
*.iso

*.json.h
*.raw.h

# Only ignore unexpected patches
*.patch
!depends/patches/**/*.patch

#libtool object files
*.lo
*.la

# Compilation and Qt preprocessor part
*.qm
Makefile
piratecash-qt
piratecash-Qt.app
!/depends/Makefile

# Unit-tests
Makefile.test
piratecash-qt_test

# Resources cpp
qrc_*.cpp

# Mac specific
.DS_Store
build
*.dSYM

# Compilation and Qt preprocessor part
*.qm
#lcov
*.gcno
*.gcda
/*.info
test_piratecash.coverage/
total.coverage/
coverage_percent.txt

#build tests
linux-coverage-build
linux-build
win32-build
test/config.ini
test/cache/*

!src/leveldb*/Makefile

.cproject
.project
.autotools
/doc/doxygen/

libpiratecashconsensus.pc
contrib/devtools/split-debug.sh
src/qt/piratecash-qt.bash
qa/pull-tester/tests-config.sh

#development symlinks
piratecash-cli
piratecashd
piratecash-qt
make

/docker/bin

# CLion
.idea
cmake-build-debug

# clang-check
*.plist

osx_volname
dist/
*.background.tiff

0 comments on commit 9dca6fb

Please sign in to comment.