Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [PASC] PascalCoin, deletable blockchain & bank account system [PASA]
by
PascalCoin
on 24/01/2017, 23:17:45 UTC
A small trick for PascalCoinMiner (OpenCL miner v0.2)

You can add -t param (this param is not documented, I used it for testing purposes)

What does param -t do:
When Wallet sends a job to the miner, "target" is a 32 bits value with left-byte indicating how many "0" bits on the left must have the PoW

Example: target=2DD63426 -> Left byte 2D is equal to 45 in decimal, so, first 45 bits of PoW must be "0"

When you add -t param you can subtract the indicated left bits, for example, a "-t 10" then miner will find 45-10=35 left "0" bits of PoW
With this example, your miner will submit a work to your wallet more quickly, but of course, wallet will say that "pow is lower than target" because is an invalid PoW

It will help you to visually see if your miner is working properly

Try it.
Code:
PascalCoinMiner.exe -p 0 -d 1 -s -n Test -t 10