Skip to content

Commit

Permalink
Merge branch 'CFL-master' of https://github.com/decenomy/DSW
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-at-decenomy committed Mar 16, 2021
2 parents 6e1e7c4 + 8238a82 commit ced3932
Show file tree
Hide file tree
Showing 1,968 changed files with 520,028 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .cargo/config.offline
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[source.crates-io]
replace-with = "vendored-sources"

[source.vendored-sources]
# The directory for this source is set to RUST_VENDORED_SOURCES by src/Makefile.am
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/clientversion.cpp export-subst
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!--- Remove this description and sections that do not apply -->

This issue tracker is only for technical issues related to CryptoFlow Core.
General CryptoFlow questions and/or support requests and are best directed to the [CryptoFlow Discord](https://discord.gg/cqmaxxbwfj).

### Describe the issue

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

### Expected behavior
Tell us what should happen

### Actual behavior
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 CryptoFlow Core are you using?
List the version number/commit ID, and if it is an official binary, self compiled or a distribution package.

### 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`, `db.log` or `config.log` file. Raw text or a link to a pastebin type site are preferred.
183 changes: 183 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
.gitignore
*.sublime-project
*.sublime-workspace
todo.txt
reset-files.bash

*.tar.gz

*.exe
src/__decenomy__
src/__decenomy__d
src/__decenomy__-cli
src/__decenomy__-tx
src/bench/bench___decenomy__
src/test/test___decenomy__
src/qt/test/test___decenomy__-qt

# CryptoFlow
src/bench/bench_cryptoflow
src/cryptoflow-cli
src/cryptoflow-tx
src/cryptoflowd
src/qt/cryptoflow-qt
src/test/test_cryptoflow
src/qt/test/test_cryptoflow-qt

# Trittium
src/bench/bench_trittium
src/qt/test/test_trittium-qt
src/qt/trittium-qt
src/test/test_trittium
src/trittium-cli
src/trittium-tx
src/trittiumd

##########################################
# clear this section when it's fixed
###
src/bench/bench_pivx
src/qt/test/test_pivx-qt
src/test/test_pivx
##########################################

# 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
confdefs.h
conftest.cpp
conftest.err
libtool
src/config/*-config.h
src/config/*-config.h.in
src/config/stamp-h1
share/setup.nsi
share/qt/Info.plist
contrib/devtools/split-debug.sh

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
.pivx
.__decenomy__
*.a
*.pb.cc
*.pb.h

*.log
*.trs
*.dmg

*.json.h
*.raw.h

#libtool object files
*.lo
*.la

# Compilation and Qt preprocessor part
*.qm
Makefile
pivx-qt
__decenomy__-qt
Jackpot-Qt.app
background.tiff*

# Rust
.cargo/.configured-for-*
.cargo/config
target/

# Unit-tests
Makefile.test
pivx-qt_test
__decenomy__-qt_test
src/test/buildenv.py

# Resources cpp
qrc_*.cpp

# Qt creator
*.pro.user

# Mac specific
.DS_Store
build

#lcov
*.gcno
/*.info
test_pivx.coverage/
test___decenomy__.coverage/
total.coverage/
coverage_percent.txt

#build tests
linux-coverage-build
linux-build
win32-build
test/config.ini
test/cache/*
qa/pull-tester/run-bitcoind-for-test.sh
qa/pull-tester/tests-config.sh
qa/pull-tester/cache/*
qa/pull-tester/test.*/*
cache/*

!src/leveldb*/Makefile

.cproject
.project
/doc/doxygen/
/nbproject/
libbitcoinconsensus.pc
.idea
CMakeLists.txt
cmake-build-debug

moc_*
*.tmp
ui_*
build*
pivxd.*
__decenomy__d.*
pivxd-new-gui.*
__decenomy__d-new-gui.*

# for Visual Studio Code

.vscode/*
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.5.6
Loading

0 comments on commit ced3932

Please sign in to comment.