Author

Topic: [ANN] [PASC] PascalCoin, true deletable blockchain - V3 Hardfork on block 210000 - page 324. (Read 990744 times)

hero member
Activity: 698
Merit: 511
am i mining right??? i got some 280x and all i get is this on the log


PoW:000000000030C74AABE125247243579C348476969EC030D42440B8D900AD4B13 Operations previous Safe Box hash:5313AE8DB8C6A5F231AEA3A1D143201D71438B0B2C486AF30EAD307CB54DDD93 Future old Safe Box hash for next block:0721AE44BD5D156B3587AABDA77B2999C9E271EE7CEB22A79A97D5218B0EAEBE
01-01-2017 19:25:24.455 TID:F3A3F700 [Error] Invalid new block 47899: Invalid timestamp (New timestamp:1483298715 last timestamp (47898):1483298720)
01-01-2017 19:25:24.456 TID:F3A3F700 [Error] Sending Error JSON RPC id () : Error: Invalid timestamp (New timestamp:1483298715 last timestamp (47898):1483298720) payload:soulistyce02 timestamp:1483298715 nonce:4226210993
01-01-2017 19:25:46.984 TID:F3A3F700 [Error] Invalid new block 47899: Proof of work is higher than target
01-01-2017 19:25:46.984 TID:F3A3F700 [Error] Sending Error JSON RPC id () : Error: Proof of work is higher than target payload:soulistyce02 timestamp:1483298736 nonce:1242201910
01-01-2017 19:28:02.656 TID:F3A3F700 [Error] Invalid new block 47899: Proof of work is higher than target
01-01-2017 19:28:02.656 TID:F3A3F700 [Error] Sending Error JSON RPC id () : Error: Proof of work is higher than target payload:soulistyce00 timestamp:1483298873 nonce:3520263105
01-01-2017 19:28:08.187 TID:F3A3F700 [Error] Invalid new block 47899: Proof of work is higher than target
01-01-2017 19:28:08.188 TID:F3A3F700 [Error] Sending Error JSON RPC id () : Error: Proof of work is higher than target payload:soulistyce03 timestamp:1483298879 nonce:362219205
01-01-2017 19:28:45.799 TID:F3A3F700 [Error] Invalid new block 47899: Proof of work is higher than target
01-01-2017 19:28:45.800 TID:F3A3F700 [Error] Sending Error JSON RPC id () : Error: Proof of work is higher than target payload:soulistyce00 timestamp:1483298914 nonce:1587967858
01-01-2017 19:29:39.401 TID:F3A3F700 [Error] Invalid new block 47899: Proof of work is higher than target
01-01-2017 19:29:39.401 TID:F3A3F700 [Error] Sending Error JSON RPC id () : Error: Proof of work is higher than target payload:soulistyce01 timestamp:1483298978 nonce:3897121319
01-01-2017 19:30:41.470 TID:F3A3F700 [Error] Invalid new block 47899: Proof of work is higher than target
01-01-2017 19:30:41.470 TID:F3A3F700 [Error] Sending Error JSON RPC id () : Error: Proof of work is higher than target payload:soulistyce04 timestamp:1483299039 nonce:3388927783

i already download the blockchain again and it stays the same...looks like isnt accepted
can someone help me
full member
Activity: 238
Merit: 100
So i put a miner name in the wallet... 8 characters. and then tha same on the miner. and when i find a block then i get 100 coins.. and my account registered on the blockchain?
Yes. You will have 100 coins and 5 accounts.
hero member
Activity: 784
Merit: 1000
Pools Of Honor
So i put a miner name in the wallet... 8 characters. and then tha same on the miner. and when i find a block then i get 100 coins.. and my account registered on the blockchain?
legendary
Activity: 1106
Merit: 1004
No risk, no fun!
Hi,

how many transactions per second is possible?

Greetz
Steve
full member
Activity: 154
Merit: 100
hero member
Activity: 784
Merit: 1000
Pools Of Honor
How fast are we seeing the "nonces accepted"and the hashrate of a single gpu? I think i managed to start the mining process...  and i get a hashrate report almost 10 minutes... Is this speed normal?

And we just create an account in the wallet with 8 characters? Cause i got confused, from people sellling acccounts...
Or they are just selled cause they managed to get a good nickname?

Really interested in this concept, too bad i missed it... (and i wonder why)

Thanks a lot. I ll be happy to be part of this community.
sr. member
Activity: 522
Merit: 266
Any of you tried compiling the wallet using the lazarus wallet project file under ubuntu?

I get a compile error in unit UTCPIP with 'blcksock' not found which is declared in the usage clauses. I will hunt around and see if a package needs installing or it depends on a unit not in my search path or whatever but if any of you already solved this I would appreciate a heads up. I will do likewise should I figure it out soon.

Exciting to have a play with Pascal again btw.


Edit: Got it. Needs sockets functionality depending on OS. For Ubuntu this has worked for me : http://www.ararat.cz/synapse/doku.php/download
hero member
Activity: 698
Merit: 511
: Proof of work is higher than target
a lot of it Sad
sr. member
Activity: 334
Merit: 263
I changed it to "SSL_C_LIB : AnsiString = 'libeay32.dll';"
Now it works!

Shouldn't we make a compiler directive to identify a platform and use an appropriate library? Something like
Code:
{$ifdef CPU32}
SSL_C_LIB : AnsiString = 'libeay32.dll';
{$ENDIF}
{$ifdef CPU64}
SSL_C_LIB : AnsiString = 'libeay64.dll';
{$ENDIF}

Thank you for your work! Wish you and your coin a huge success!

Hi. I will inlclude this change on source code to allow 32 bits on Lazarus.

Thanks!
member
Activity: 86
Merit: 11
PascalCoin, for some reason I can't run it when compiled in lazarus on my win7-32

It says "Cannot load libeay64.dll", which is not surprising since I'm on 32bit OS.

I attach screenshot from IDE and screenshots when application is compiled and executed.




Anyway, I couldn't make it working without altering sources (Sorry).
in unit "UOpenSSL.pas" on line 40 you have "SSL_C_LIB : AnsiString = 'libeay64.dll';"
For some reason assuming that if compiler is FPC, a 64bit version should be used.
I changed it to "SSL_C_LIB : AnsiString = 'libeay32.dll';"
Now it works!

Shouldn't we make a compiler directive to identify a platform and use an appropriate library? Something like
Code:
{$ifdef CPU32}
SSL_C_LIB : AnsiString = 'libeay32.dll';
{$ENDIF}
{$ifdef CPU64}
SSL_C_LIB : AnsiString = 'libeay64.dll';
{$ENDIF}

Thank you for your work! Wish you and your coin a huge success!
legendary
Activity: 1108
Merit: 1005
Ehm, I accidentally sent some coins with encrypted payload.
Is there any way how to change it to unencrypted paylod?
I mean is there any option how to change it from that wallet, from where it was sent?
cheers
legendary
Activity: 3808
Merit: 1723
Up to 300% + 200 FS deposit bonuses
Yeah installed it on a few of my rigs and working great as usual. Keep up the good work.


legendary
Activity: 1450
Merit: 1013
Cryptanalyst castrated by his government, 1952
Thanks for the update. It installed routinely and seems to support Vorkshalk's miner with no issues. Those Internal Messages are real attention getters!
sr. member
Activity: 334
Merit: 263
New Build 1.4 of PascalCoin

Download wallet installer from SourceForge:
https://sourceforge.net/projects/pascalcoin/

Source code at GitHub:
https://github.com/PascalCoin/PascalCoin

It includes some security protocol changes and JSON-RPC changes to allow off-line wallets (cold storage) usefull for big exchanges.

Upgrade to this version is MANDATORY
full member
Activity: 238
Merit: 100
Hi, PascalCoin!

I want to help with beta-testing. Sent you PM.

Thanks.
hero member
Activity: 616
Merit: 500
Anyone buying accounts pm me
sr. member
Activity: 334
Merit: 263
Hi miners.

I'm testing a new build version that includes important changes and I need to test new build with a miner.

I'm not a miner, I haven't a GPU card, so I can't test it for real.

What I need:

At least 1 or 2 miners who wants to test new beta version to help PascalCoin  Grin
- Install new beta version (I'll send you by email)
- Test it and mine
- If mining is successful, and all tests are Ok, then we will be ready for update build


Please, send me a PM with your email to send you beta version. Thanks.
hero member
Activity: 980
Merit: 502
How many Pascal coins are you getting using RX480?
hero member
Activity: 582
Merit: 502
would be very grateful if anyone here can give me an account.

 Grin

and how to withdraw pascal from cryptopia?

the address is account or public key?

what if i don't have account in my wallet?


update: the client syncing still sucks here. seems node connection is not working at all.



Send me your pub key in a pm



Thanks to you at first.

but seems i have to solve the syncing problem first. I thought it it is ok when i reintalled it today.

actually the same issue i met 1 month ago. maybe due to lack of nodes in China.

I pasted the log above, maybe someone can tell me what is going on.

I will PM you as soon as i get my wallet fully synced.

tks.

Check your computer's clock. It must be synchronized, otherwise the wallet wont sync.
legendary
Activity: 1330
Merit: 1000
would be very grateful if anyone here can give me an account.

 Grin

and how to withdraw pascal from cryptopia?

the address is account or public key?

what if i don't have account in my wallet?


update: the client syncing still sucks here. seems node connection is not working at all.



Send me your pub key in a pm



Thanks to you at first.

but seems i have to solve the syncing problem first. I thought it it is ok when i reintalled it today.

actually the same issue i met 1 month ago. maybe due to lack of nodes in China.

I pasted the log above, maybe someone can tell me what is going on.

I will PM you as soon as i get my wallet fully synced.

tks.
Jump to: