Browse Source

Merge pull request #1 from MyHush/master

catchup
pull/15/head
Larry Ludlow 7 years ago
committed by GitHub
parent
commit
b253234c78
  1. 16
      .github/ISSUE_TEMPLATE.md
  2. 5
      CONTRIBUTING.md
  3. 5
      INSTALL
  4. 5
      INSTALL.md
  5. 9
      README.md
  6. 12
      zcutil/build.sh

16
.github/ISSUE_TEMPLATE.md

@ -1,10 +1,10 @@
<!--- Remove text and sections that do not apply -->
This issue tracker is only for technical issues related to zcashd.
This issue tracker is only for technical issues related to hushd, the Hush node daemon.
General Zcash questions and/or support requests and are best directed to the [Zcash Forums](https://forum.z.cash) or [Community Rocket.Chat](https://chat.zcashcommunity.com).
General Hush questions and/or support requests and are best directed to the [Hush Forums](https://forum.myhush.org) or [Slack Chat](https://myhush.slack.com).
For reporting security vulnerabilities or for sensitive discussions with our security team, please contact [security@z.cash](mailto:security@z.cash). You can use the [GPG key](https://z.cash/gpg-pubkeys/security.asc) (fingerprint: `AF85 0445 546C 18B7 86F9 2C62 88FB 8B86 D8B5 A68C`) to send an encrypted message. The key and fingerprint are duplicated on our [Public Keys page](https://z.cash/support/pubkeys.html).
For reporting security vulnerabilities or for sensitive discussions with our security team, please contact your local nasal demon via ICMP.
### Describe the issue
Please provide a general summary of the issue you're experiencing
@ -21,8 +21,8 @@ Tell us what should happen
### Actual behaviour + errors
Tell us what happens instead including any noticable error output (any messages displayed on-screen when e.g. a crash occurred)
### The version of Zcash you were using:
Run `zcashd --version` to find out
### The version of Hush you were using:
Run `hushd --version` to find out
### Machine specs:
- OS name + version:
@ -34,9 +34,9 @@ Run `zcashd --version` to find out
- Compiler version (gcc -version):
### Any extra information that might be useful in the debugging process.
This includes the relevant contents of `~/.zcash/debug.log`. You can paste raw text, attach the file directly in the issue or link to the text via a pastebin type site.
This includes the relevant contents of `~/.hush/debug.log`. You can paste raw text, attach the file directly in the issue or link to the text via a pastebin type site.
Please also include any non-standard things you did during compilation (extra flags, dependency version changes etc.) if applicable.
### Do you have a back up of `~/.zcash` directory and/or take a VM snapshot?
- Backing up / making a copy of the `~/.zcash` directory might help make the problem reproducible. Please redact appropriately.
### Do you have a back up of `~/.hush` directory and/or take a VM snapshot?
- Backing up / making a copy of the `~/.hush` directory might help make the problem reproducible. Please redact appropriately.
- Taking a VM snapshot is really helpful for interactively testing fixes

5
CONTRIBUTING.md

@ -0,0 +1,5 @@
# Contributing To Hush
Please send a Github Pull Request to the `dev` branch or create a Github Issue using our issue template.
# More Coming Soon

5
INSTALL

@ -1,5 +0,0 @@
Building Zcash
See the Zcash github wiki (https://github.com/zcash/zcash/wiki) for instructions on building zcashd,
the intended-for-services, no-graphical-interface, reference
implementation of Zcash.

5
INSTALL.md

@ -0,0 +1,5 @@
# Building Hush
See the Zcash github wiki (https://github.com/zcash/zcash/wiki) for
instructions on building zcashd, the intended-for-services,
no-graphical-interface, reference implementation of Zcash.

9
README.md

@ -24,7 +24,10 @@ TEAM
* Axel Karlsson: [@sparkit] Community manager, general communications.
* Iolar Demartini Junior: [@demartini] Web Developer (Front End).
* David Mercer: [@radix42] Lead Developer
* David Mercer: [@radix42] Lead Developer
* Matthew Reichardt: [@mreichardt] Core Developer, Tooling
* Duke Leto: [@leto] Core Developer, Yak Shaver
* Larry Ludlow [@madbuda] Core Developer, Infrastructure
* You can join our team too and make contributions
@ -32,6 +35,10 @@ Slack
-----
https://slack.myhush.org/ //invite
Forum
-----
https://forum.myhush.org/
Building
--------

12
zcutil/build.sh

@ -96,6 +96,18 @@ then
shift
fi
# Arch workaround for gcc 7
# might break the entry above to find gcc- on arm
if [ -f "/etc/arch-release" ]; then
if [ -f "/usr/bin/gcc-5" ]; then
CC=gcc-5
CXX=g++-5
else
echo 'gcc5 required, please install using "sudo pacman -S gss5"'
exit 1
fi
fi
PREFIX="$(pwd)/depends/$BUILD/"
eval "$MAKE" --version

Loading…
Cancel
Save