From 4b32a1e28d49b172864bf2d3fd831768184664dc Mon Sep 17 00:00:00 2001 From: Loki Verloren Date: Mon, 3 May 2021 14:12:43 +0200 Subject: [PATCH] minor corrections --- README.md | 5 ++--- docs/index.md | 4 +++- version/version.go | 8 ++++---- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 74afb5b..9fa6458 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/index.md b/docs/index.md index e78c58c..4478490 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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... diff --git a/version/version.go b/version/version.go index 7e7d707..e37fd97 100644 --- a/version/version.go +++ b/version/version.go @@ -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 = "" )