Bitcoin Forum
June 21, 2024, 11:09:11 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 »
  Print  
Author Topic: [ANN] SUN COIN - Many Exchanges, Big Price PUMPS, MultiPool paying SUN!  (Read 54248 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
BTCspoon
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
February 25, 2014, 08:00:03 PM
 #81

Are you kidding me?

I think he is serious, we are supposed to tremble in front of his broken KGW implementation...shake humans!!
forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
February 25, 2014, 08:04:06 PM
 #82

Are you kidding me?

I think he is serious, we are supposed to tremble in front of his broken KGW implementation...shake humans!!


hahah. can anybody check code why KGW didnt work?
i mean anybody that knows how code works Wink

yolo
appleblumpkin
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
February 25, 2014, 08:11:27 PM
 #83

Are you kidding me?

I think he is serious, we are supposed to tremble in front of his broken KGW implementation...shake humans!!


hahah. can anybody check code why KGW didnt work?
i mean anybody that knows how code works Wink

the Kimoto Gravity well... in this case.. since it is low hash would look something like 1/(1 + (0.7084 * (PastBlocksMass/144)^(-1.228))  this would result in diff retarget after every block.  Dev needs to comment on, at least, the fact that he understands that the KGW isn't being implemented.
MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 08:29:08 PM
Last edit: February 25, 2014, 09:45:46 PM by MeGaDoOm
 #84

checking,,, first time working with GitHub though.

Looked in source, for now checking the extended debug-log. it should output something about kgw.
(qtwallet with parameter -debug) BRB ;-)

- debug info not showing kgw output. perhaps no retargetting difficulty (?)
looking further

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 08:45:41 PM
 #85

ok, keep in mind i´m not a C dev, but this looks weird to me.
(perhaps i just don´t understand the calculations going on)

unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlock *pblock)
{
        int DiffMode = 1;
        if (fTestNet) {
                if (pindexLast->nHeight+1 >= 50) { DiffMode = 2; }
        }
        else {
                if (pindexLast->nHeight+1 >= 25000) { DiffMode = 2; }
        }
        
        if (DiffMode == 1) { return GetNextWorkRequired_V1(pindexLast, pblock); }
        else if (DiffMode == 2) { return GetNextWorkRequired_V2(pindexLast, pblock); }
        return GetNextWorkRequired_V2(pindexLast, pblock);
}
GetNextWorkRequired_V1 is the old diff routine,
GetNextWorkRequired_V2 is the KGW diff routine and is called when DiffMode becomes 2.
DiffMode becomes 2 when something (current block?) gets above 25000Shocked

Am i cross eyed?
Can SunCoin DEV check this out?

SUN: SeTwgd1vtkV8suztgc6h8PsUtpMCJHe35J

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
linkme
Sr. Member
****
Offline Offline

Activity: 324
Merit: 250



View Profile
February 25, 2014, 08:50:00 PM
 #86

Yeah its still on the previously announced block number (originally it was going to be block 25000)

if (pindexLast->nHeight+1 >= 25000) { DiffMode = 2; }

DEV Please change and release another update Tongue
MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 08:51:52 PM
 #87

Yeah its still on the previously announced block number (originally it was going to be block 25000)

if (pindexLast->nHeight+1 >= 25000) { DiffMode = 2; }

DEV Please change and release another update Tongue

Or he didn´t add the latest and greatest to GitHub yet !?

LOL, this time around it´s : pools check, community check, sun up, dev doublecheck Tongue

SUN: SeTwgd1vtkV8suztgc6h8PsUtpMCJHe35J

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 08:52:49 PM
 #88

did the dev put a bounty on that, or should i have waited  Wink

SUN: SeTwgd1vtkV8suztgc6h8PsUtpMCJHe35J

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 09:16:21 PM
 #89

i just switched to testnet, so KGW should kick in at block 50 but the QT-client keeps crashing on me (so a no go on testnet)
(moved wallet, deleted blockchain and .conf first)
should i have a testnode (node=) for testnet?

if (fTestNet) {
                              if (pindexLast->nHeight+1 >= 50) { DiffMode = 2; }
                             }


    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
SUNcoinDEVs (OP)
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
February 25, 2014, 09:21:30 PM
 #90

did the dev put a bounty on that, or should i have waited  Wink

SUN: SeTwgd1vtkV8suztgc6h8PsUtpMCJHe35J

yes we put wrong number - too high shortly so it would tak weeks to get to that block. we will fix the code so in 24h the KGW will kick in.

the launch of new code will be delayed by 24h again - but at least more people will have chances to join us now.




you are getting the bounty sure.

MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 09:21:50 PM
 #91

OP changed (!?)
KGW KICKS IN AT 25000 BLOCK. SUN GODS MADE US FOOLISH PEOPLE THINK OF DIFFERENT NUMBER. WE NEED TO MINE MORE TO SHOW THEM WE WORKSHIP THEIR POWERS.

edit: see next post. Dev will release an update in an hour !

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
SUNcoinDEVs (OP)
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
February 25, 2014, 09:22:13 PM
 #92

did the dev put a bounty on that, or should i have waited  Wink

SUN: SeTwgd1vtkV8suztgc6h8PsUtpMCJHe35J

We are aware of the issue, and the block retarget will be changed in the next hour, please wait for an announcement to update. linux release and sources will be updated first then compiled windows and mac wallets will be created.

There was no official bounty as we were waiting for one of our devs to come online and he confirmed the issue was due to the code not being updated since we decided to make the change earlier. We are currently considering changing to block 21210 as we need time for pools and exchanges to update. Oh and You have received a reward anyway Wink

MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 09:23:13 PM
 #93

did the dev put a bounty on that, or should i have waited  Wink

SUN: SeTwgd1vtkV8suztgc6h8PsUtpMCJHe35J

yes we put wrong number - too high shortly so it would tak weeks to get to that block. we will fix the code so in 24h the KGW will kick in.
the launch of new code will be delayed by 24h again - but at least more people will have chances to join us now.


you are getting the bounty sure.

Thanks man !                                                 Grin

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
FanEagle
Legendary
*
Offline Offline

Activity: 2898
Merit: 1118


Leading Crypto Sports Betting & Casino Platform


View Profile
February 25, 2014, 09:31:20 PM
 #94

Okay, that's interesting.
That means Sun tricked us without the gravity thing?

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 09:41:39 PM
 #95

Okay, that's interesting.
That means Sun tricked us without the gravity thing?

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
SUNcoinDEVs (OP)
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
February 25, 2014, 09:57:45 PM
 #96

https://github.com/suncoin/suncoin/commit/136c212f96fe2e5ba9ef8e5be69e3576d5b857c0

Block changeover updated, those who are compiling from source should update, otherwise please wait for an announcement for the binaries

MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 10:00:21 PM
 #97

https://github.com/suncoin/suncoin/commit/136c212f96fe2e5ba9ef8e5be69e3576d5b857c0

Block changeover updated, those who are compiling from source should update, otherwise please wait for an announcement for the binaries

Thanks ! OP still says 25000 though (?)
OK, so 21210 it is !

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
tavirosu
Member
**
Offline Offline

Activity: 83
Merit: 10


View Profile WWW
February 25, 2014, 10:02:20 PM
 #98

60s block, doesn't it mean it needs about 64h to reach block 2500?!

From developers for developers: http://www.cryptocoindev.com/
MeGaDoOm
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 25, 2014, 10:14:06 PM
 #99

i would say about 1 hour (isn´t 62 blocks about 62 minutes @ 60s a block?)

i hope all pools can update in time. correct me if i´m wrong, but wouldn´t we have a chain fork at hand if the largest pools don´t update in time?

    ▄▄
  ▐████▌
  ██████
  ▐████▌
    ▀▀
█▄  ▐▌  ▄█
██  ▐▌  ██
██  ██  ██
██  ██  ██
██▄ ██ ▄██
 ▀▀████▀▀
   ▐██▌
    ██
    ██
    ██
    ██
    ██
   ▐██▌
   ▐██▌
   ▐██▌
   ████
   ████
 
|
                         ▄▄
                    ▄▄██████
               ▄▄███████████
          ▄▄████████████████
     ▄▄█████████████████████
  ██████████████████████████

██████████████████████████████████▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
██████████████████████▀▀
█████████████████████ ▄▄███████████
████████████████████ ▐█▀  ▀████████
████████████████████ ▐█▄  ▄████████
█████████████████████ ▀▀███████████
██████████████████████▄▄
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
███████████████████████████████████
▀█████████████████████████████████▀

 
|
 
     ▄▄▀▀▀▀▀▀▀▀▀▀▀▀▄▄
    █                █
    █  █  ▄▄▄▄▄▄▄▄▄  █
    █                █
    █ ▄████████████▄
    █ ██████████████
    █ ██████████████
    █ ▀████████████▀
    █                █
    █ ▄▀▀▀▀▄  ▄▀▀▀▀▄ █
    █ █    █  █    █ █
    █  ▀▀▀▀    ▀▀▀▀  █
    █                █
     █              █
      █            █
       █          █
        █        █
         ▀▄▄▄▄▄▄▀
           ▀██▀
            ▐▌
▀▀▀▀▀▀▀▀▀▀▀▀▀
SUNcoinDEVs (OP)
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
February 25, 2014, 10:15:42 PM
 #100

i would say about 1 hour (isn´t 62 blocks about 62 minutes @ 60s a block?)

i hope all pools can update in time. correct me if i´m wrong, but wouldn´t we have a chain fork at hand if the largest pools don´t update in time?


At the current diff, it will take a lot longer

Linux Binaries updated https://github.com/suncoin/suncoin/releases/download/1.2.1/suncoind

Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!