Bitcoin Forum
July 05, 2024, 01:36:27 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 »
21  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v8.0 (Windows/Linux) on: March 09, 2017, 04:09:23 AM
Guys,

You can also mine Pascal Lite with your Eth+Pasc dualminer.

Pascal Lite is a fork of pascalcoin with improvements on network and coin immersion. The networks sits at 250GHS on peak and 70GHS atm.

For more Info you can check its ANN at

ANN:       https://bitcointalk.org/index.php?topic=1773026.0
Explorer
: https://pascallite.com/
Pool:       https://pasl.fairpool.xyz/
Pool automatically distributes an account to miner when you reached 12.5 PASL

Its on cue to be listed on https://www.cryptopia.co.nz/. The devs are currently working it out. If you missed the first one, this might be your second chance. Mine while hashrate is low.

Cheers.
22  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[HELP GET US LISTED ON CRYPTOPIA - PLEASE DONATE] on: March 08, 2017, 11:49:33 PM
Has anyone tried syncing linux node from start? how fast is it? I think it will be an issue later on if new miners and exchanges will list us.

I tried to resync my linux machine and its taking a bit slow from the very bottom. @adaseb can this be addressed?

Are you talking about the linux server daemon or the linux gui wallet?

probably both. what i did was remove the directory of blocks and tried to re-index. its syncing but its slow.
23  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[HELP GET US LISTED ON CRYPTOPIA - PLEASE DONATE] on: March 08, 2017, 11:40:22 PM
Remember this guy?

I wonder how many coins he has?




He gets huge sum of the supply. he's using his own pool. There is a post of him on original using that miner name.
24  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[HELP GET US LISTED ON CRYPTOPIA - PLEASE DONATE] on: March 08, 2017, 11:36:02 PM
Has anyone tried syncing linux node from start? how fast is it? I think it will be an issue later on if new miners and exchanges will list us.

I tried to resync my linux machine and its taking a bit slow from the very bottom. @adaseb can this be addressed?
25  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[HELP GET US LISTED ON CRYPTOPIA - PLEASE DONATE] on: March 08, 2017, 11:27:53 PM
Pascal Lite Rich List




Pretty sure the linked accounts are inter-related just by looking at the account # and balances.

Those at the bottom is dedmaroz with 10k each, new node are with 50k and 43k accounts. olorin is account 310-81 and you have about 40k by my estimate. all others are dispersed on small amounts. well you are all early adopters. care to sell some? Smiley

We need the network to grow to at least 1 THS to be stable. and xiphon is correct. More pools.


@xiphon,
any plan of publishing pool source code?
26  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[100% Pascal Code - 0 % Premine] on: March 08, 2017, 11:14:18 PM
Cheaters gonna cheat...



Calling New Node 2017/2/2:

Pls donate to project developments. You have almost 20% of supply.  Grin
27  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[HELP GET US LISTED ON CRYPTOPIA - PLEASE DONATE] on: March 08, 2017, 08:29:33 PM

Which FPC did you use? The one with "sudo apt-get install fpc" or did you download the one that's required found in the FAQ?


I install Lazarus and FPC manually. I download fpc_3.0.2-170225_amd64.deb, fpc-src_3.0.2-170225_amd64.deb and lazarus-project_1.6.4-0_amd64.deb. I'm quite sure this is done correct. And it is the newest stable versions.

I'm not aware of any FAQ telling me to do otherwise.

However both PascalCoin and Pascal Lite compile and run perfect when I correct the two functions in UTime.pas.

This is how it should look:

Quote
Function DateTime2UnivDateTime(d:TDateTime):TDateTime;
{$IFDEF FPC}
begin
//  Result := UniversalTimeToLocal(d);
  Result := LocalTimeToUniversal(d);
end;
{$ELSE}

-----------
Function UnivDateTime2LocalDateTime(d:TDateTime):TDateTime;
{$IFDEF FPC}
begin
  Result := UniversalTimeToLocal(d);
//  Result := LocalTimeToUniversal(d);
end;
{$ELSE}

Then everything works  Smiley

Good to hear that it works now. Please give feedback on how fast syncing from start. Many thanks.
28  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[HELP GET US LISTED ON CRYPTOPIA - PLEASE DONATE] on: March 08, 2017, 11:43:13 AM

That is good news.
29  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[HELP GET US LISTED ON CRYPTOPIA - PLEASE DONATE] on: March 08, 2017, 11:31:00 AM
@adaseb bittrex. maybe someone can help?

https://bittrex.zendesk.com/hc/en-us/articles/202583854-Submitting-a-Coin-to-Bittrex
30  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[Time bug on: March 08, 2017, 09:14:51 AM
I think there is a bug in UTime.pas. I got banned several times for having the wrong time although I was quite sure my computer's clock was correct.

I UTime.pas I found a function Function "DateTime2UnivDateTime":

Quote
Function DateTime2UnivDateTime(d:TDateTime):TDateTime;
{$IFDEF FPC}
begin
  Result := UniversalTimeToLocal(d);
//  Result := LocalTimeToUniversal(d);
end;
{$ELSE}

It returns local time + 2 hours not the local time  Angry




Give us more info about your location, operating system, etc. You I think are having this issue also with Pascal Coin correct?


First let me correct myself it returns local time + 1hour, sorry!

I live in Denmark and my computer is set to central european time zone as it should be. But this is not the problem.

The function DateTime2UnivDateTime should retur Universal time, that is what the name says but it calls a fpc function that returns local time.

Another function seems to be wrong too:

Quote
Function UnivDateTime2LocalDateTime(d:TDateTime):TDateTime;
{$IFDEF FPC}
begin
//  Result := UniversalTimeToLocal(d);
  Result := LocalTimeToUniversal(d);
end;

{$ELSE}

It is supposed to return local time but calls a fpc function that returns universal time




I set my time specifically to your local timezone. Closed my node then re-open. Not having any issues at all. got no problem on both linux and windows machine. How did you compile your wallet?
31  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[Time bug on: March 08, 2017, 09:01:19 AM
I think there is a bug in UTime.pas. I got banned several times for having the wrong time although I was quite sure my computer's clock was correct.

I UTime.pas I found a function Function "DateTime2UnivDateTime":

Quote
Function DateTime2UnivDateTime(d:TDateTime):TDateTime;
{$IFDEF FPC}
begin
  Result := UniversalTimeToLocal(d);
//  Result := LocalTimeToUniversal(d);
end;
{$ELSE}

It returns local time + 2 hours not the local time  Angry




Give us more info about your location, operating system, etc. You I think are having this issue also with Pascal Coin correct?

I think hes using modded wallet. Well thats not allowed in here.
32  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[Time bug on: March 08, 2017, 08:33:17 AM
I think there is a bug in UTime.pas. I got banned several times for having the wrong time although I was quite sure my computer's clock was correct.

I UTime.pas I found a function Function "DateTime2UnivDateTime":

Quote
Function DateTime2UnivDateTime(d:TDateTime):TDateTime;
{$IFDEF FPC}
begin
  Result := UniversalTimeToLocal(d);
//  Result := LocalTimeToUniversal(d);
end;
{$ELSE}

It returns local time + 2 hours not the local time  Angry




You can always change your timezone. try changing it to any time zone and check if you will still get banned. Unless you manually put 2 hours forward then you'll have problems.
33  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[HELP GET US LISTED ON CRYPTOPIA - PLEASE DONATE] on: March 08, 2017, 06:29:31 AM
Buying coins also. Pm me. 1200sat.

Edit: I already received an offer. Thanks for all the PM.
34  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[MANDATORY UPGRADE REQUIRED - MARCH 3 2017] on: March 07, 2017, 08:41:11 PM
I didn't ask them. Its just some post I read somewhere that they require that much BTC to get a coin listed.



I see no chance of having this listed at all if we all go by the same passive approach. What a waste of electricity to all these miners. Better mine pascal coin or other shit that pays for your bill then.
35  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[MANDATORY UPGRADE REQUIRED - MARCH 3 2017] on: March 07, 2017, 09:03:00 AM
@adaseb, have you looked into listing requirements at bittrex? lets get this listed.  Wink

Last I heard Bittrex requires like 5 BTC or so to list a coin.

5 btc? the whole available supply is not even worth 5btc at the price he is asking in here.

Interested in getting some pasl. Offering pay $50 per 10000 pasc. Any reputed escrow

PM me about pasl and pasl accounts.

Interested too. There might be someone selling. Pm me also.

288 blocks a day @50 coins = 14400
$50 for 10000 means $72 for 14.4K.

72/1250(btc current price) = 0.0576 day for all mined coins in a day. not so hard to subsidize for a period.

Hmmm..


Maybe there is an exemption to that 5btc. Are there other requirements they ask?
36  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[MANDATORY UPGRADE REQUIRED - MARCH 3 2017] on: March 07, 2017, 05:41:20 AM
@adaseb, have you looked into listing requirements at bittrex? lets get this listed.  Wink
37  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[MANDATORY UPGRADE REQUIRED - MARCH 3 2017] on: March 05, 2017, 04:19:08 AM
Interested in getting some pasl. Offering pay $50 per 10000 pasc. Any reputed escrow

PM me about pasl and pasl accounts.

Interested too. There might be someone selling. Pm me also.

288 blocks a day @50 coins = 14400
$50 for 10000 means $72 for 14.4K.

72/1250(btc current price) = 0.0576 day for all mined coins in a day. not so hard to subsidize for a period.

Hmmm..
38  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[MANDATORY UPGRADE REQUIRED - MARCH 3 2017] on: March 05, 2017, 03:19:58 AM
@xiphon

Please use real time timestamp on your pool. demaroz already fixed his software. All miners are now on real time except the pool.

I still haven't found a block on wolf0 miner.  Huh
39  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[MANDATORY UPGRADE REQUIRED - MARCH 3 2017] on: March 04, 2017, 01:52:06 PM

We have now minimum this -
Client: IP:125.36.165.186:54120 Sent/Received:11785/11007 Bytes - [3-4] 1.4.2wL - Active since 11 minutes ago
Client: IP:110.185.136.77:59776 Sent/Received:3950/2261 Bytes - [3-4] 1.4.2wL - Active since 7 minutes ago
Is in possible to block old wallets?

As long as they are not a node then it shouldn't matter. Even if they mine with a future timestamp, it won't get accepted on the network.

Only the nodes have to have the latest software.




But PASL is not unfair as far as i see, we just could see the first attempts of community development Smiley


Its not that. He just finds the coin to be very buggy and in its alpha stage.

Not correct.

Any timestamp is accepted.

Nope, PascalLite network rejects blocks having invalid future timestamp.

Partially true, wetpussy and new node still shows negative.

Anyone tried wolf0 sgminer solo and found a block? started mining a few hours ago and not so lucky with 2 470rigs.
40  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PASL]-[PASCAL Lite]-[MANDATORY UPGRADE REQUIRED - MARCH 3 2017] on: March 04, 2017, 12:46:59 PM

We have now minimum this -
Client: IP:125.36.165.186:54120 Sent/Received:11785/11007 Bytes - [3-4] 1.4.2wL - Active since 11 minutes ago
Client: IP:110.185.136.77:59776 Sent/Received:3950/2261 Bytes - [3-4] 1.4.2wL - Active since 7 minutes ago
Is in possible to block old wallets?

As long as they are not a node then it shouldn't matter. Even if they mine with a future timestamp, it won't get accepted on the network.

Only the nodes have to have the latest software.




But PASL is not unfair as far as i see, we just could see the first attempts of community development Smiley


Its not that. He just finds the coin to be very buggy and in its alpha stage.

Not correct.

Any timestamp is accepted.

This coins are exploited heavily already and big stakes are already in hands which are just waiting to dump.

The coin is not mature in its current state for any use, it's a pure speculators (and fpga miners) coin with custom pools and hacked / modded nodes / wallets

Agree. Eventually we'll get there on fixing this issues. I think PASL might open for your suggestions. right adaseb?
Pages: « 1 [2] 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!