Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix wrong import path #88

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.10.3

WORKDIR /go/src/github.com/HcashOrg/hcd
WORKDIR /go/src/github.com/james-ray/hcd
COPY . .

RUN go get -u github.com/golang/dep/cmd/dep
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build image
FROM golang:1.10.3

WORKDIR /go/src/github.com/HcashOrg/hcd
WORKDIR /go/src/github.com/james-ray/hcd
COPY . .

RUN go get -u github.com/golang/dep/cmd/dep
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ hcd maintains the entire past transactional ledger of Hc and allows
relaying of quantum resistant transactions to other Hc nodes across the world.

Note: To send or receive funds and join Proof-of-Stake mining, you will also need
[hcwallet](https://github.com/HcashOrg/hcwallet).
[hcwallet](https://github.com/james-ray/hcwallet).

HC is forked from [Decred](https://github.com/HcashOrg) and [btcd](https://github.com/btcsuite/btcd) which are full node implementations written in Go. Both projects are ongoing and under active development. Since hcd is synced and will merge with upstream commits from hcd and btcd, it will get the benefit of both hcd and btcd's ongoing upgrades to staking, voting, peer and connection handling, database optimization and other blockchain related technology improvements. Advances made by hcd can also be pulled back upstream to hcd and btcd including quantum resistant signature schemes and more.
HC is forked from [Decred](https://github.com/james-ray) and [btcd](https://github.com/btcsuite/btcd) which are full node implementations written in Go. Both projects are ongoing and under active development. Since hcd is synced and will merge with upstream commits from hcd and btcd, it will get the benefit of both hcd and btcd's ongoing upgrades to staking, voting, peer and connection handling, database optimization and other blockchain related technology improvements. Advances made by hcd can also be pulled back upstream to hcd and btcd including quantum resistant signature schemes and more.

## Development Process
The master branch is regularly built and tested, but is not guaranteed to be completely stable. Tags are created regularly to indicate new official, stable release versions of hcd.
Expand All @@ -39,16 +39,16 @@ For a first time installation, the project and dependency sources can be
obtained manually with `git`

```
git clone https://github.com/HcashOrg/hcd $GOPATH/src/github.com/HcashOrg/hcd
cd $GOPATH/src/github.com/HcashOrg/hcd
git clone https://github.com/james-ray/hcd $GOPATH/src/github.com/james-ray/hcd
cd $GOPATH/src/github.com/james-ray/hcd
go install . ./cmd/...
```

To update an existing source tree, pull the latest changes and install the
matching dependencies:

```
cd $GOPATH/src/github.com/HcashOrg/hcd
cd $GOPATH/src/github.com/james-ray/hcd
git pull
go install . ./cmd/...
```
Expand All @@ -67,7 +67,7 @@ To use your node for mining add the miningaddr flag when running hcd:
hcd -u YOURUNIQUERPCUSERNAME -P YOURUNIQUERPCPASSWORD --testnet --miningaddr=YOURTESTNETADDRESS
```

To generate a testnet mining address you must install [hcwallet](https://github.com/HcashOrg/hcwallet)
To generate a testnet mining address you must install [hcwallet](https://github.com/james-ray/hcwallet)

To begin CPU mining after hcd is already running you can run the following in your terminal:

Expand All @@ -82,7 +82,7 @@ hcctl -u YOURUNIQUEUSERNAME -P YOURUNIQUEPASSWORD --testnet setgenerate true
```
$ rm -rf $HOME/.hcd
$ rm -rf $HOME/.hcwallet
$ cd $HOME/go/src/github.com/HcashOrg/hcd
$ cd $HOME/go/src/github.com/james-ray/hcd
$ git pull
$ go install $(glide nv)
```
Expand All @@ -91,19 +91,19 @@ $ go install $(glide nv)
```
$ rm -rf $HOME/Library/Application\ Support/Hcwallet
$ rm -rf $HOME/Library/Application\ Support/Hcd
$ cd $HOME/go/src/github.com/HcashOrg/hcd
$ cd $HOME/go/src/github.com/james-ray/hcd
$ git pull
$ go install $(glide nv)
```

## Issue Tracker

The [integrated github issue tracker](https://github.com/HcashOrg/hcd/issues)
The [integrated github issue tracker](https://github.com/james-ray/hcd/issues)
is used for this project.

## Documentation

The documentation is a work-in-progress. It is located in the [docs](https://github.com/HcashOrg/hcd/tree/master/docs) folder.
The documentation is a work-in-progress. It is located in the [docs](https://github.com/james-ray/hcd/tree/master/docs) folder.

## License

Expand Down
Loading