minor corrections
This commit is contained in:
@@ -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
|
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
|
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
|
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
|
demand so much memory transfer that runs lower than one hash per second
|
||||||
(possibly a limitation in Go's big integer library) - and 4 cycles produces
|
and 5 cycles produces nearly half a megabyte of data at the end.
|
||||||
nearly half a megabyte of data at the end.
|
|
||||||
|
|
||||||
The result of the calculation is then hashed using the fast Blake3 hash
|
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
|
function, to yield the result. Since there is no realistic way in which with
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
###### [parallelcoin.info](https://parallelcoin.info)
|
###### [parallelcoin.info](https://parallelcoin.info)
|
||||||
|
|
||||||
wiki: [](https://github.com/p9c/p9/wiki)
|
wiki: [](https://github.com/p9c/p9/wiki)
|
||||||
|
|
||||||
social: [](https://t.me/ParallelCoinPlan9)
|
social: [](https://t.me/ParallelCoinPlan9)
|
||||||
[](https://discord.gg/yB9sYmm3cZ)
|
[](https://discord.gg/yB9sYmm3cZ)
|
||||||
[](https://www.facebook.com/parallelcoin)
|
[](https://www.facebook.com/parallelcoin)
|
||||||
@@ -19,6 +18,9 @@ social: [](h
|
|||||||
|
|
||||||
[](https://raw.githubusercontent.com/p9c/p9/main/docs/whitepaper/whitepaper.md)
|
[](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...
|
...but until then...
|
||||||
|
|||||||
@@ -13,12 +13,12 @@ var (
|
|||||||
// GitRef is the gitref, as in refs/heads/branchname
|
// GitRef is the gitref, as in refs/heads/branchname
|
||||||
GitRef = "refs/heads/main"
|
GitRef = "refs/heads/main"
|
||||||
// GitCommit is the commit hash of the current HEAD
|
// GitCommit is the commit hash of the current HEAD
|
||||||
GitCommit = "438fa67f937c6114608607c62efa902de7a67436"
|
GitCommit = "40a7d8327e70dca9576a7257ad320106d62ee72f"
|
||||||
// BuildTime stores the time when the current binary was built
|
// 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
|
// Tag lists the Tag on the build, adding a + to the newest Tag if the commit is
|
||||||
// not that commit
|
// not that commit
|
||||||
Tag = "v0.0.1+"
|
Tag = "v0.0.2+"
|
||||||
// PathBase is the path base returned from runtime caller
|
// PathBase is the path base returned from runtime caller
|
||||||
PathBase = "/home/loki/src/github.com/p9c/p9/"
|
PathBase = "/home/loki/src/github.com/p9c/p9/"
|
||||||
// Major is the major number from the tag
|
// Major is the major number from the tag
|
||||||
@@ -26,7 +26,7 @@ var (
|
|||||||
// Minor is the minor number from the tag
|
// Minor is the minor number from the tag
|
||||||
Minor = 0
|
Minor = 0
|
||||||
// Patch is the patch version number from the tag
|
// Patch is the patch version number from the tag
|
||||||
Patch = 1
|
Patch = 2
|
||||||
// Meta is the extra arbitrary string field from Semver spec
|
// Meta is the extra arbitrary string field from Semver spec
|
||||||
Meta = ""
|
Meta = ""
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user