Change a couple references

This commit is contained in:
Patrick Mylund Nielsen 2016-11-14 00:30:26 -05:00
parent 13eb8db520
commit ebe8a851ca
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ The storage root hash can be on or off chain compared by the parties involved.
Clone the repository and build the source: Clone the repository and build the source:
``` ```
git clone https://github.com/ethlab/quorum.git git clone https://github.com/jpmorganchase/quorum.git
cd quorum cd quorum
make all make all
``` ```

View File

@ -131,7 +131,7 @@ func (r *ReleaseService) checker() {
warning := fmt.Sprintf("Client v%d.%d.%d-%x seems older than the latest upstream release v%d.%d.%d-%x", warning := fmt.Sprintf("Client v%d.%d.%d-%x seems older than the latest upstream release v%d.%d.%d-%x",
r.config.Major, r.config.Minor, r.config.Patch, r.config.Commit[:4], version.Major, version.Minor, version.Patch, version.Commit[:4]) r.config.Major, r.config.Minor, r.config.Patch, r.config.Commit[:4], version.Major, version.Minor, version.Patch, version.Commit[:4])
howtofix := fmt.Sprintf("Please check https://github.com/ethereum/go-ethereum/releases for new releases") howtofix := fmt.Sprintf("Please check https://github.com/jpmorganchase/quorum/releases for new releases")
separator := strings.Repeat("-", len(warning)) separator := strings.Repeat("-", len(warning))
glog.V(logger.Warn).Info(separator) glog.V(logger.Warn).Info(separator)