Author

Topic: [ANN][PASL]-[PASCAL Lite]-[The Future is Almost Here] - page 102. (Read 164899 times)

sr. member
Activity: 275
Merit: 258

Is my 35 node not working correctly?  It's been a bit since I've logged on.  Been traveling a bit.

No that node has been down for like a week or so.



Dang, sorry about that.  I'll take a look in the morning.
legendary
Activity: 3808
Merit: 1723

Is my 35 node not working correctly?  It's been a bit since I've logged on.  Been traveling a bit.

No that node has been down for like a week or so.

sr. member
Activity: 275
Merit: 258
willing to buy some pascal lite OTC please pm me with offers , including how much u got and suggested price

If you want I could sell you some... its for a good cause because it would go back into the coin because I need to host more nodes.

Node hosting is $5/month so $60/year per node. I am thinking at first another node since there is only 1 right now. When we grew I would launch another node for another $60/year.

So 3 nodes in total should be nice and stable. All hosted on Amazon EC2.

Fix your code first before any money making gesture. add node calls every 5000ms and get nodecall.timestamp

https://github.com/PascalCoin/PascalCoin/blob/master/Units/PascalCoin/UBlockChain.pas#L461
Code:
if ((Operations.OperationBlock.timestamp) < (FLastOperationBlock.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;
        if (Operations.OperationBlock.timestamp > (UnivDateTimeToUnix(DateTime2UnivDateTime(now))+CT_MaxSecondsDifferenceOfNetworkNodes)) then begin
          errors := 'Invalid timestamp (Future time '+Inttostr(Operations.OperationBlock.timestamp)+'-'+inttostr(UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+'='+
             inttostr(Operations.OperationBlock.timestamp-UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+' > '+inttostr(CT_MaxSecondsDifferenceOfNetworkNodes)+')';
          exit;

Add
Code:
 if ((Operations.OperationBlock.timestamp) < (last_nodecall.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;

be creative. 10 secs gap is huge enough. Dont mine if you have more than 10 secs latency.
also make

 CT_MaxSecondsDifferenceOfNetworkNodes =5secs

That would fix timedrift and time cheating. This code makes it tight for any time drifters. and no way a block can be mine in less 5 secs after the last blocks. proper block spacing.


The entire code needs to be updated, not just those lines.

I will update to the latest wallet when PascalCoin wallet proves to be stable and bug-free.

Right now with every updates, new problems keep popping up and its alot of work going thru all the changes and amending them.

I am not asking for money, but I do need some reliable nodes. This coin currently only has 1 stable node. If anyone has any credits for AWS or can host a node, please PM me.



Is my 35 node not working correctly?  It's been a bit since I've logged on.  Been traveling a bit.
legendary
Activity: 3808
Merit: 1723
willing to buy some pascal lite OTC please pm me with offers , including how much u got and suggested price

If you want I could sell you some... its for a good cause because it would go back into the coin because I need to host more nodes.

Node hosting is $5/month so $60/year per node. I am thinking at first another node since there is only 1 right now. When we grew I would launch another node for another $60/year.

So 3 nodes in total should be nice and stable. All hosted on Amazon EC2.

Fix your code first before any money making gesture. add node calls every 5000ms and get nodecall.timestamp

https://github.com/PascalCoin/PascalCoin/blob/master/Units/PascalCoin/UBlockChain.pas#L461
Code:
if ((Operations.OperationBlock.timestamp) < (FLastOperationBlock.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;
        if (Operations.OperationBlock.timestamp > (UnivDateTimeToUnix(DateTime2UnivDateTime(now))+CT_MaxSecondsDifferenceOfNetworkNodes)) then begin
          errors := 'Invalid timestamp (Future time '+Inttostr(Operations.OperationBlock.timestamp)+'-'+inttostr(UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+'='+
             inttostr(Operations.OperationBlock.timestamp-UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+' > '+inttostr(CT_MaxSecondsDifferenceOfNetworkNodes)+')';
          exit;

Add
Code:
 if ((Operations.OperationBlock.timestamp) < (last_nodecall.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;

be creative. 10 secs gap is huge enough. Dont mine if you have more than 10 secs latency.
also make

 CT_MaxSecondsDifferenceOfNetworkNodes =5secs

That would fix timedrift and time cheating. This code makes it tight for any time drifters. and no way a block can be mine in less 5 secs after the last blocks. proper block spacing.


The entire code needs to be updated, not just those lines.

I will update to the latest wallet when PascalCoin wallet proves to be stable and bug-free.

Do not always depend pascal dev. Think on your own to make it a better blockchain. You dont really need the latest wallet of original pascal. current wallet code is good but needs tightening. Do a testnet with that code addition. ofcourse add node calls first, that is the secret. node calls. make a code for that and i will take a look. Makes your neurons function a little bit. This is your blockchain now. good night.


If the current version 1.5.1 of PascalCoin is stable and bug free, I will update our wallet in a couple of days with the release.

If you are interested you are more than welcome to join the team as a dev, however is this an alternative bitcointalk account or do you have an account with some reputation but just tried to stay anonymous since this account of yours was registered today.

newbie
Activity: 42
Merit: 0
willing to buy some pascal lite OTC please pm me with offers , including how much u got and suggested price

If you want I could sell you some... its for a good cause because it would go back into the coin because I need to host more nodes.

Node hosting is $5/month so $60/year per node. I am thinking at first another node since there is only 1 right now. When we grew I would launch another node for another $60/year.

So 3 nodes in total should be nice and stable. All hosted on Amazon EC2.

Fix your code first before any money making gesture. add node calls every 5000ms and get nodecall.timestamp

https://github.com/PascalCoin/PascalCoin/blob/master/Units/PascalCoin/UBlockChain.pas#L461
Code:
if ((Operations.OperationBlock.timestamp) < (FLastOperationBlock.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;
        if (Operations.OperationBlock.timestamp > (UnivDateTimeToUnix(DateTime2UnivDateTime(now))+CT_MaxSecondsDifferenceOfNetworkNodes)) then begin
          errors := 'Invalid timestamp (Future time '+Inttostr(Operations.OperationBlock.timestamp)+'-'+inttostr(UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+'='+
             inttostr(Operations.OperationBlock.timestamp-UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+' > '+inttostr(CT_MaxSecondsDifferenceOfNetworkNodes)+')';
          exit;

Add
Code:
 if ((Operations.OperationBlock.timestamp) < (last_nodecall.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;

be creative. 10 secs gap is huge enough. Dont mine if you have more than 10 secs latency.
also make

 CT_MaxSecondsDifferenceOfNetworkNodes =5secs

That would fix timedrift and time cheating. This code makes it tight for any time drifters. and no way a block can be mine in less 5 secs after the last blocks. proper block spacing.


The entire code needs to be updated, not just those lines.

I will update to the latest wallet when PascalCoin wallet proves to be stable and bug-free.

Do not always depend pascal dev. Think on your own to make it a better blockchain. You dont really need the latest wallet of original pascal. current wallet code is good but needs tightening. Do a testnet with that code addition. ofcourse add node calls first, that is the secret. node calls. make a code for that and i will take a look. Makes your neurons function a little bit. This is your blockchain now. good night.
legendary
Activity: 3808
Merit: 1723
willing to buy some pascal lite OTC please pm me with offers , including how much u got and suggested price

If you want I could sell you some... its for a good cause because it would go back into the coin because I need to host more nodes.

Node hosting is $5/month so $60/year per node. I am thinking at first another node since there is only 1 right now. When we grew I would launch another node for another $60/year.

So 3 nodes in total should be nice and stable. All hosted on Amazon EC2.

Fix your code first before any money making gesture. add node calls every 5000ms and get nodecall.timestamp

https://github.com/PascalCoin/PascalCoin/blob/master/Units/PascalCoin/UBlockChain.pas#L461
Code:
if ((Operations.OperationBlock.timestamp) < (FLastOperationBlock.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;
        if (Operations.OperationBlock.timestamp > (UnivDateTimeToUnix(DateTime2UnivDateTime(now))+CT_MaxSecondsDifferenceOfNetworkNodes)) then begin
          errors := 'Invalid timestamp (Future time '+Inttostr(Operations.OperationBlock.timestamp)+'-'+inttostr(UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+'='+
             inttostr(Operations.OperationBlock.timestamp-UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+' > '+inttostr(CT_MaxSecondsDifferenceOfNetworkNodes)+')';
          exit;

Add
Code:
 if ((Operations.OperationBlock.timestamp) < (last_nodecall.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;

be creative. 10 secs gap is huge enough. Dont mine if you have more than 10 secs latency.
also make

 CT_MaxSecondsDifferenceOfNetworkNodes =5secs

That would fix timedrift and time cheating. This code makes it tight for any time drifters. and no way a block can be mine in less 5 secs after the last blocks. proper block spacing.


The entire code needs to be updated, not just those lines.

I will update to the latest wallet when PascalCoin wallet proves to be stable and bug-free.

Right now with every updates, new problems keep popping up and its alot of work going thru all the changes and amending them.

I am not asking for money, but I do need some reliable nodes. This coin currently only has 1 stable node. If anyone has any credits for AWS or can host a node, please PM me.

newbie
Activity: 42
Merit: 0
willing to buy some pascal lite OTC please pm me with offers , including how much u got and suggested price

If you want I could sell you some... its for a good cause because it would go back into the coin because I need to host more nodes.

Node hosting is $5/month so $60/year per node. I am thinking at first another node since there is only 1 right now. When we grew I would launch another node for another $60/year.

So 3 nodes in total should be nice and stable. All hosted on Amazon EC2.

Fix your code first before any money making gesture. add node calls every 5000ms and get nodecallreply.timestamp

https://github.com/PascalCoin/PascalCoin/blob/master/Units/PascalCoin/UBlockChain.pas#L461
Code:
if ((Operations.OperationBlock.timestamp) < (FLastOperationBlock.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;
        if (Operations.OperationBlock.timestamp > (UnivDateTimeToUnix(DateTime2UnivDateTime(now))+CT_MaxSecondsDifferenceOfNetworkNodes)) then begin
          errors := 'Invalid timestamp (Future time '+Inttostr(Operations.OperationBlock.timestamp)+'-'+inttostr(UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+'='+
             inttostr(Operations.OperationBlock.timestamp-UnivDateTimeToUnix(DateTime2UnivDateTime(now)))+' > '+inttostr(CT_MaxSecondsDifferenceOfNetworkNodes)+')';
          exit;

Add
Code:
 if ((Operations.OperationBlock.timestamp) < (last_nodecallreply.timestamp)) then begin
          errors := 'Invalid timestamp (New timestamp:'+inttostr(Operations.OperationBlock.timestamp)+' last timestamp ('+Inttostr(SafeBox.BlocksCount-1)+'):'+Inttostr(FLastOperationBlock.timestamp)+')';
          exit;
        end;

be creative. 10 secs gap is huge enough. Dont mine if you have more than 10 secs latency.
also make

 CT_MaxSecondsDifferenceOfNetworkNodes =5secs

That would fix timedrift and time cheating. This code makes it tight for any time drifters. and no way a block can be mine in less 5 secs after the last blocks. proper block spacing.
full member
Activity: 129
Merit: 100
Democratizing Global Trade - ICO NOW LIVE
Dev, any news for exchange???
legendary
Activity: 3808
Merit: 1723
willing to buy some pascal lite OTC please pm me with offers , including how much u got and suggested price

If you want I could sell you some... its for a good cause because it would go back into the coin because I need to host more nodes.

Node hosting is $5/month so $60/year per node. I am thinking at first another node since there is only 1 right now. When we grew I would launch another node for another $60/year.

So 3 nodes in total should be nice and stable. All hosted on Amazon EC2.
full member
Activity: 253
Merit: 101
KEK
willing to buy some pascal lite OTC please pm me with offers , including how much u got and suggested price
sr. member
Activity: 434
Merit: 257
Is it possible to use sgminer? (I mean for solo mining)
Not now. Can somebody compile this for win64 plz - https://github.com/wolf9466/sgminer-pascal-solo .  Undecided

Thanks, I will try it on my linux system. Too bad that I don't have win7 to compile it there...
legendary
Activity: 3808
Merit: 1723
adaseb, do you have vector version of PascalLite logo? If so, upload it somewhere, please.

I didn't create the logo, it was done by a volunteer. THis is all he sent me

full member
Activity: 254
Merit: 121
adaseb, do you have vector version of PascalLite logo? If so, upload it somewhere, please.
legendary
Activity: 3808
Merit: 1723
That nvidia stratum sgminer doesn't work with pascal lite. Most you can get is like 500mh/s with AMD gpus.
legendary
Activity: 3248
Merit: 1070
Miner cmcmc have 5 minutes time drift... This idiots killing all pascal mining (plite and pascal). Nerds...

You can't do a 5 minute drift, you would get banned by the nodes.

I've been observing that guy and he finds most of the blocks because he has lots of hashpower.

That guy probably has 30 GPUs pointed at the coin. Look at his different sequence of Payload miner names.






i see the nethash is only 11GH which is 2 rig of 1070, i doubt he is pointing 30 gpu...
legendary
Activity: 3808
Merit: 1723
OK.  Cool

So i've been mining this for the last 30 minutes or so and getting no issues.

The New Node/ CMCM miners have + time drifts.

Myself and GOODJOB have slighly - time drifts however if a block is found and the time is a little negative, it still gets accepted by the network.

So I really have no idea what you are referring to. I agree this was an issue during launch however now it doesn't seem to be much of an issue.

Like I said before, during launch there was only one node and a cheater all they had to do was host a few node to get the time sync average higher, now that we got multiple nodes everything is much more stable.

legendary
Activity: 3808
Merit: 1723
Miner cmcmc have 5 minutes time drift... This idiots killing all pascal mining (plite and pascal). Nerds...

You can't do a 5 minute drift, you would get banned by the nodes.

I've been observing that guy and he finds most of the blocks because he has lots of hashpower.

That guy probably has 30 GPUs pointed at the coin. Look at his different sequence of Payload miner names.

When the difficulty goes lower i'll observe and see who is cheating or not. So far davecre100 and New Node don't do any time cheats. You sure your clock is properly synced?


Yes, fresh mobo, win 10, autosynk...


DaveCree100, PrimeVRS, CMCM, New Node don't do any time drift-cheats. If anything CMCMC clock is synced too slow because when he finds a block the current block age is +20 seconds or so. Not negative.
hero member
Activity: 677
Merit: 500
Miner cmcmc have 5 minutes time drift... This idiots killing all pascal mining (plite and pascal). Nerds...

You can't do a 5 minute drift, you would get banned by the nodes.

I've been observing that guy and he finds most of the blocks because he has lots of hashpower.

That guy probably has 30 GPUs pointed at the coin. Look at his different sequence of Payload miner names.

When the difficulty goes lower i'll observe and see who is cheating or not. So far davecre100 and New Node don't do any time cheats. You sure your clock is properly synced?


Yes, fresh mobo, win 10, autosynk...
legendary
Activity: 3808
Merit: 1723
Miner cmcmc have 5 minutes time drift... This idiots killing all pascal mining (plite and pascal). Nerds...

You can't do a 5 minute drift, you would get banned by the nodes.

I've been observing that guy and he finds most of the blocks because he has lots of hashpower.

That guy probably has 30 GPUs pointed at the coin. Look at his different sequence of Payload miner names.




hero member
Activity: 677
Merit: 500
Miner cmcmc have 5 minutes time drift... This idiots killing all pascal mining (plite and pascal). Nerds...
Jump to: