minor corrections

This commit is contained in:
Loki Verloren
2021-05-03 14:12:43 +02:00
parent 40a7d8327e
commit 4b32a1e28d
3 changed files with 9 additions and 8 deletions

View File

@@ -35,9 +35,8 @@ two, squares each half, and then multiplies the halves, and finally divides
by a jumbled version of the starting bytes. This is then repeated 3 times
until a number is produced of the order of 20-40kb in size. It is possible
to make this work target even harder, but beyond 3 cycles it starts to
demand so much memory transfer that it doesn't seem to function properly
(possibly a limitation in Go's big integer library) - and 4 cycles produces
nearly half a megabyte of data at the end.
demand so much memory transfer that runs lower than one hash per second
and 5 cycles produces nearly half a megabyte of data at the end.
The result of the calculation is then hashed using the fast Blake3 hash
function, to yield the result. Since there is no realistic way in which with

View File

@@ -8,7 +8,6 @@
###### [parallelcoin.info](https://parallelcoin.info)
wiki: [![](https://raw.githubusercontent.com/p9c/p9/main/docs/wiki.svg)](https://github.com/p9c/p9/wiki)
social: [![](https://raw.githubusercontent.com/p9c/p9/main/docs/telegram.svg)](https://t.me/ParallelCoinPlan9)
[![](https://raw.githubusercontent.com/p9c/p9/main/docs/discord.svg)](https://discord.gg/yB9sYmm3cZ)
[![](https://raw.githubusercontent.com/p9c/p9/main/docs/fb.svg)](https://www.facebook.com/parallelcoin)
@@ -19,6 +18,9 @@ social: [![](https://raw.githubusercontent.com/p9c/p9/main/docs/telegram.svg)](h
[![](https://raw.githubusercontent.com/p9c/p9/main/docs/socialpreview.jpg)](https://raw.githubusercontent.com/p9c/p9/main/docs/whitepaper/whitepaper.md)
click the image above for the **ParallelCoin** *Plan 9 from Crypto Space*
Whitepaper
---
...but until then...

View File

@@ -13,12 +13,12 @@ var (
// GitRef is the gitref, as in refs/heads/branchname
GitRef = "refs/heads/main"
// GitCommit is the commit hash of the current HEAD
GitCommit = "438fa67f937c6114608607c62efa902de7a67436"
GitCommit = "40a7d8327e70dca9576a7257ad320106d62ee72f"
// BuildTime stores the time when the current binary was built
BuildTime = "2021-05-03T12:06:37+02:00"
BuildTime = "2021-05-03T14:08:30+02:00"
// Tag lists the Tag on the build, adding a + to the newest Tag if the commit is
// not that commit
Tag = "v0.0.1+"
Tag = "v0.0.2+"
// PathBase is the path base returned from runtime caller
PathBase = "/home/loki/src/github.com/p9c/p9/"
// Major is the major number from the tag
@@ -26,7 +26,7 @@ var (
// Minor is the minor number from the tag
Minor = 0
// Patch is the patch version number from the tag
Patch = 1
Patch = 2
// Meta is the extra arbitrary string field from Semver spec
Meta = ""
)