Bitcoin Forum
June 29, 2024, 06:09:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   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 »  All
  Print  
Author Topic: [ANN][XDC] Xedoscoin Skein-SHA2 - (POW) for Car Enthusiasts  (Read 50646 times)
abrakadabra
Hero Member
*****
Offline Offline

Activity: 639
Merit: 503


View Profile
February 02, 2014, 08:10:07 PM
 #21

no restart. patch from 4800 block
mohammedfaiz143
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
February 02, 2014, 08:10:14 PM
 #22

premine?
There are no premine. We can see one day when block explorer going on.
Only the luck to hit some special block rules here.
May be coin rest as it is. like mazda's - Some strange Buggy, but working allways.
what's your opinions?
 

It could be fun but it would take years to mine all and then after 262800 blocks block reward will be 0.0000007...?
who will mine it then?

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses 100% original codebase
  Superfast with 30 seconds instant finality
  Tested 5000 tx per block on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
Quote
dstorm
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
February 02, 2014, 08:13:08 PM
 #23

no restart. patch from 4800 block
+1

altmine.net p2pools - Follow me on Twitter for latest updates @altminenet
maccd1
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 02, 2014, 08:18:26 PM
 #24

X9y9BbRwc7DXfZB4q982eJbyjp7hRXhJ1z

THX
112tigra112
Member
**
Offline Offline

Activity: 238
Merit: 10


View Profile
February 02, 2014, 08:24:30 PM
 #25

I believe that we need to do a full restart.
Since 4800 pay increase and complexity too. And what about those who Mein penny and has no high speeds?

Пo pyccки:
Я cчитaю, чтo нyжнo дeлaть пoлный pecтapт.
C 4800 oплaтa пoвыcитcя и cлoжнocть тoжe. И чтo дeлaть тeм ктo мaйнил кoпeйки и нe имeeт бoльшиx cкopocтeй?
1Lef (OP)
Member
**
Offline Offline

Activity: 96
Merit: 10


View Profile
February 02, 2014, 08:49:42 PM
Last edit: February 02, 2014, 09:00:17 PM by 1Lef
 #26

It could be fun but it would take years to mine all and then after 262800 blocks block reward will be 0.0000007...?
who will mine it then?

No,
I reviewed the code, there is one else missing. After block 262800 the reward will be 40 Coins.


    if (nHeight < nReleaseBlocks)
    {
        nSubsidy = nMinSubsidy;
    }
    else if (nHeight < nHalveBlocks) {
        if (!(nHeight%3250)) { nSubsidy = 170; }
        else if (!(nHeight%4250)) { nSubsidy = 180; }
        else if (!(nHeight%6250)) { nSubsidy = 140; }
        else if (!(nHeight%4800)) { nSubsidy = 221; }
        else if (!(nHeight%25)) { nSubsidy = nStartSubsidy-1 ; }
        else { nSubsidy = nStartSubsidy}
    }
    else
    {
        nSubsidy = nStartSubsidy;


I believe that we need to do a full restart.
Since 4800 pay increase and complexity too. And what about those who Mein penny and has no high speeds?

Пo pyccки:
Я cчитaю, чтo нyжнo дeлaть пoлный pecтapт.
C 4800 oплaтa пoвыcитcя и cлoжнocть тoжe. И чтo дeлaть тeм ктo мaйнил кoпeйки и нe имeeт бoльшиx cкopocтeй?

agree.
There are economic reasons not to make partial restart. Only full, or norestart. Sorry for the bug guys and thanks for mazda xedos empathy.
Maybe some is lucky and will hit block 3250.
 



mohammedfaiz143
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
February 02, 2014, 08:51:36 PM
 #27

It could be fun but it would take years to mine all and then after 262800 blocks block reward will be 0.0000007...?
who will mine it then?

No,
I reviewed the code, there is one else missing. After block 262800 the reward will be 40 Coins.


    if (nHeight < nReleaseBlocks)
    {
        nSubsidy = nMinSubsidy;
    }
    else if (nHeight < nHalveBlocks) {
        if (!(nHeight%3250)) { nSubsidy = 170; }
        else if (!(nHeight%4250)) { nSubsidy = 180; }
        else if (!(nHeight%6250)) { nSubsidy = 140; }
        else if (!(nHeight%4800)) { nSubsidy = 221; }
        else if (!(nHeight%25)) { nSubsidy = nStartSubsidy-1 ; }
        else { nSubsidy = nStartSubsidy}
    }
    else
    {
        nSubsidy = nStartSubsidy;









so final wording ? Restart or ...?

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses 100% original codebase
  Superfast with 30 seconds instant finality
  Tested 5000 tx per block on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
Quote
Simpson93
Full Member
***
Offline Offline

Activity: 170
Merit: 100


View Profile
February 02, 2014, 08:58:35 PM
 #28

it could be fun like this

Ok the nodes will be up until block 4800 for sure.. I'll be listen here if anyone is the lucky winner and make decision after that.
ok..

This is what we can do and then decide...
1Lef (OP)
Member
**
Offline Offline

Activity: 96
Merit: 10


View Profile
February 02, 2014, 09:04:01 PM
 #29

Additional aspect  - block halving target is Octomber-November 2014 . And the reward return to 40.
Simpson93
Full Member
***
Offline Offline

Activity: 170
Merit: 100


View Profile
February 02, 2014, 09:05:13 PM
 #30

Additional aspect  - block halving target is Octomber-November 2014 .


lol. Thats a loooong time Wink
thisisnotmyltcusername
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
February 02, 2014, 09:12:06 PM
 #31

got my first 80 XDC (well 79.999999999...) block , nice  Grin
maccd1
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 02, 2014, 09:15:40 PM
 #32

GIVEAWAY at .00000001
r3wt
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
February 02, 2014, 09:18:33 PM
 #33

Great coin features, great logo, honest dev. This coin looks like a winner.

Finally, a dev who didn't lie. its a miracle. a superbowl sunday miracle.

My negative trust rating is reflective of a personal vendetta by someone on default trust.
r3wt
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
February 02, 2014, 09:21:48 PM
 #34

It could be fun but it would take years to mine all and then after 262800 blocks block reward will be 0.0000007...?
who will mine it then?

No,
I reviewed the code, there is one else missing. After block 262800 the reward will be 40 Coins.


    if (nHeight < nReleaseBlocks)
    {
        nSubsidy = nMinSubsidy;
    }
    else if (nHeight < nHalveBlocks) {
        if (!(nHeight%3250)) { nSubsidy = 170; }
        else if (!(nHeight%4250)) { nSubsidy = 180; }
        else if (!(nHeight%6250)) { nSubsidy = 140; }
        else if (!(nHeight%4800)) { nSubsidy = 221; }
        else if (!(nHeight%25)) { nSubsidy = nStartSubsidy-1 ; }
        else { nSubsidy = nStartSubsidy}
    }
    else
    {
        nSubsidy = nStartSubsidy;


I believe that we need to do a full restart.
Since 4800 pay increase and complexity too. And what about those who Mein penny and has no high speeds?

Пo pyccки:
Я cчитaю, чтo нyжнo дeлaть пoлный pecтapт.
C 4800 oплaтa пoвыcитcя и cлoжнocть тoжe. И чтo дeлaть тeм ктo мaйнил кoпeйки и нe имeeт бoльшиx cкopocтeй?

agree.
There are economic reasons not to make partial restart. Only full, or norestart. Sorry for the bug guys and thanks for mazda xedos empathy.
Maybe some is lucky and will hit block 3250.
 





you can add an else statement while the coin is live, so long as the current block hasn't exceede the block where the else statement would be.

My negative trust rating is reflective of a personal vendetta by someone on default trust.
Simpson93
Full Member
***
Offline Offline

Activity: 170
Merit: 100


View Profile
February 02, 2014, 10:31:34 PM
 #35

"Every 3250-th block return 170 XDC"

But the real value was 0.0000017 XDC

hmmm
1Lef (OP)
Member
**
Offline Offline

Activity: 96
Merit: 10


View Profile
February 02, 2014, 10:55:28 PM
 #36

update to 0.9.9.8 is needed . (before block 5000!)
git the source
I_M
Full Member
***
Offline Offline

Activity: 135
Merit: 100



View Profile
February 02, 2014, 10:58:48 PM
 #37

update to 0.9.9.8 is needed . (before block 5000!)
git the source
Build us a windows wallet soon?  Thanks!
MisO69
Legendary
*
Offline Offline

Activity: 1946
Merit: 1005


My mule don't like people laughing


View Profile
February 02, 2014, 11:02:33 PM
 #38

Great coin features, great logo, honest dev. This coin looks like a winner.

I don't know what I laughed at harder, the first post or this one.  Cheesy

thisisnotmyltcusername
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
February 02, 2014, 11:49:23 PM
Last edit: February 03, 2014, 12:05:50 AM by thisisnotmyltcusername
 #39

update to 0.9.9.8 is needed . (before block 5000!)
git the source

recompiled. tried to redownload blockchain, stuck after 24 blocks with 7 active connexions...

received block 00000b5989231cb4445e2aa077b69deb199516d66cee7d3375785b37d0347009
ERROR: ConnectBlock() : coinbase pays too much (actual=7999999999 vs limit=7000000000)
InvalidChainFound: invalid block=00000b5989231cb4445e2aa077b69deb199516d66cee7d3375785b37d0347009  height=25  log2_work=24,710741  date=2014-02-02 19:22:36
InvalidChainFound:  current best=000009fc55f7f0b67e10e1d9f013b18b741a46ab58828a7106263e465218a847  height=24  log2_work=24,65278  date=2014-02-02 19:22:30
InvalidChainFound: invalid block=00000b5989231cb4445e2aa077b69deb199516d66cee7d3375785b37d0347009  height=25  log2_work=24,710741  date=2014-02-02 19:22:36
InvalidChainFound:  current best=000009fc55f7f0b67e10e1d9f013b18b741a46ab58828a7106263e465218a847  height=24  log2_work=24,65278  date=2014-02-02 19:22:30
ERROR: SetBestBlock() : ConnectBlock 00000b5989231cb4445e2aa077b69deb199516d66cee7d3375785b37d0347009 failed
ERROR: AcceptBlock() : AddToBlockIndex failed
ERROR: ProcessBlock() : AcceptBlock FAILED
Misbehaving: 54.201.217.235:18152 (0 -> 100) DISCONNECTING
disconnecting node 54.201.217.235:18152


then everything behind seems to be considered orphaned...
eceived block 000002a1e51590862d6da312ef01852d22858165ea54cd366b48914a057538cd
ProcessBlock: ORPHAN BLOCK, prev=000000dcba15651edef98fe4926d608890063a74de3b0db7f2052d90fc11ae5b
received block 000001e89825ceb6544a6e5efa95b3083830d99915ead9afdcb80aed8a70f3fd
ProcessBlock: ORPHAN BLOCK, prev=000002a1e51590862d6da312ef01852d22858165ea54cd366b48914a057538cd
received block 00000265f2930e1a26ae56826b84199ac96fddc61fa9c88325708c3dc41cbda5
ProcessBlock: ORPHAN BLOCK, prev=000001e89825ceb6544a6e5efa95b3083830d99915ead9afdcb80aed8a70f3fd
received block 0000004e5462ac85e342ec26b7c4b57b31cb142417855f941a8badf75ef802f6
ProcessBlock: ORPHAN BLOCK, prev=00000265f2930e1a26ae56826b84199ac96fddc61fa9c88325708c3dc41cbda5
received block 0000024fe294100afe8f61e4ea68f1cf83393dd08495b198b0c7962e67d69fc8
ProcessBlock: ORPHAN BLOCK, prev=0000004e5462ac85e342ec26b7c4b57b31cb142417855f941a8badf75ef802f6
received block 000000c4b336cb42490d8363623c768ff3a0bc80104f1c61c5a5e22e95d4a9c7
ProcessBlock: ORPHAN BLOCK, prev=0000024fe294100afe8f61e4ea68f1cf83393dd08495b198b0c7962e67d69fc8
received block 0000034f91adede3ed687d10c929c6fb3dd18e58f39fa9c15bb8e11f257090ee
ProcessBlock: ORPHAN BLOCK, prev=000000c4b336cb42490d8363623c768ff3a0bc80104f1c61c5a5e22e95d4a9c7
received block 000001e969f0819d758b5c46a35cbed2951c7164a7020308aec73cb3dff80afc
ProcessBlock: ORPHAN BLOCK, prev=0000034f91adede3ed687d10c929c6fb3dd18e58f39fa9c15bb8e11f257090ee
received block 0000013722f9de1a3cf82999183ce9f3241a58fd54dbf62d93781837b4d515b5
ProcessBlock: ORPHAN BLOCK, prev=000001e969f0819d758b5c46a35cbed2951c7164a7020308aec73cb3dff80afc
received block 000000b0e837a67ee478c1ea798c811bb8638e56cd0f3d8acd65166808c758e3
ProcessBlock: ORPHAN BLOCK, prev=0000013722f9de1a3cf82999183ce9f3241a58fd54dbf62d93781837b4d515b5
received block 00000002c31c998d00f0adc2b872d8a4f2e5fbc3977fa0ba7d3e0de5a075fee1
ProcessBlock: ORPHAN BLOCK, prev=000000b0e837a67ee478c1ea798c811bb8638e56cd0f3d8acd65166808c758e3
received block 0000043fe89b1a8814754003697e8e169a01646fc06ba103afbf6a381cb69f02
ProcessBlock: ORPHAN BLOCK, prev=00000002c31c998d00f0adc2b872d8a4f2e5fbc3977fa0ba7d3e0de5a075fee1
received block 000002581742b5620dafa208f060a3c1e260a058f65ddc2638c19ffbdf0d992a
ProcessBlock: ORPHAN BLOCK, prev=0000043fe89b1a8814754003697e8e169a01646fc06ba103afbf6a381cb69f02
received block 00000299ac0039937627ce963edac0ec9aa9fc82b42248bab51aa09421d67a5b
ProcessBlock: ORPHAN BLOCK, prev=000002581742b5620dafa208f060a3c1e260a058f65ddc2638c19ffbdf0d992a
received block 0000020287053a7f2469e908853bac8cdfa8cd534cdb23424b9831809151ed9f
ProcessBlock: ORPHAN BLOCK, prev=00000299ac0039937627ce963edac0ec9aa9fc82b42248bab51aa09421d67a5b
received block 000000fa61f73f25519d343c25f2924548da9fda4a3699039d9af8270ac8f737
ProcessBlock: ORPHAN BLOCK, prev=0000020287053a7f2469e908853bac8cdfa8cd534cdb23424b9831809151ed9f
received block 000000f31cfbe67fcd3d761dcae0405c390f56f744728f98838dedf8a8b697e7
ProcessBlock: ORPHAN BLOCK, prev=000000fa61f73f25519d343c25f2924548da9fda4a3699039d9af8270ac8f737
received block 0000018a76888a307dfb01b1eda984d48069e937922cca6fe8ad3dd1300a2c2b
ProcessBlock: ORPHAN BLOCK, prev=000000f31cfbe67fcd3d761dcae0405c390f56f744728f98838dedf8a8b697e7
received block 0000007dc9adaca34bfa1154dfbc74dde6cfdfbd16213727694e2f32e00ad707
ProcessBlock: ORPHAN BLOCK, prev=0000018a76888a307dfb01b1eda984d48069e937922cca6fe8ad3dd1300a2c2b
received block 000001efe37cd34d4fd219e5ba2fd2fb2283a7cf02ced43f19f8454c27f3c58c
ProcessBlock: ORPHAN BLOCK, prev=0000007dc9adaca34bfa1154dfbc74dde6cfdfbd16213727694e2f32e00ad707
received block 000002bd1f330f8a449725aa93579f66581f91b79e8d94b6e95b7d18a773cdee
ProcessBlock: ORPHAN BLOCK, prev=000001efe37cd34d4fd219e5ba2fd2fb2283a7cf02ced43f19f8454c27f3c58c
received block 0000014f10d11d3a98c19d6dccdf16e05c84c71ed3baf54aa4c1785125931686
ProcessBlock: ORPHAN BLOCK, prev=000002bd1f330f8a449725aa93579f66581f91b79e8d94b6e95b7d18a773cdee
received block 00000287ea8e797a47d04e7b7686503baca8e22c8916e19dab3404c3b8c373a8
ProcessBlock: ORPHAN BLOCK, prev=0000014f10d11d3a98c19d6dccdf16e05c84c71ed3baf54aa4c1785125931686
received block 00000023e98638694e23716f913e1465425690eb91a36ef1e8d0ec05de59ad43
ProcessBlock: ORPHAN BLOCK, prev=00000287ea8e797a47d04e7b7686503baca8e22c8916e19dab3404c3b8c373a8
received block 0000000005b80d7fe684f51af52174536f9c3e309a33789e968906c045cf2d40
ProcessBlock: ORPHAN BLOCK, prev=000000008e67e40cf2239a3306c8e9598cb910d3a4896cbbd8d98318a946008a

then countless
received block 00000002138779762a9d39faf4127f058df68075c43989a3b72cec7b0bf4c8e6
InvalidChainFound: invalid block=00000002138779762a9d39faf4127f058df68075c43989a3b72cec7b0bf4c8e6  height=2969  log2_work=39,526157  date=2014-02-02 21:26:52
InvalidChainFound:  current best=000009fc55f7f0b67e10e1d9f013b18b741a46ab58828a7106263e465218a847  height=24  log2_work=24,65278  date=2014-02-02 19:22:30
InvalidChainFound: Warning: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.
ProcessBlock: ACCEPTED
received block 000000014e29e7a8b4d74c5a7e29ab2b5bab267ccf6031e3390fdd15798218e9
InvalidChainFound: invalid block=000000014e29e7a8b4d74c5a7e29ab2b5bab267ccf6031e3390fdd15798218e9  height=2970  log2_work=39,529847  date=2014-02-02 21:27:01
InvalidChainFound:  current best=000009fc55f7f0b67e10e1d9f013b18b741a46ab58828a7106263e465218a847  height=24  log2_work=24,65278  date=2014-02-02 19:22:30
InvalidChainFound: Warning: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.
ProcessBlock: ACCEPTED
received block 00000001a2cec750e7d658abe5faef310b83bf0545fc096cf394997d4da34019
InvalidChainFound: invalid block=00000001a2cec750e7d658abe5faef310b83bf0545fc096cf394997d4da34019  height=2971  log2_work=39,533528  date=2014-02-02 21:27:23
InvalidChainFound:  current best=000009fc55f7f0b67e10e1d9f013b18b741a46ab58828a7106263e465218a847  height=24  log2_work=24,65278  date=2014-02-02 19:22:30
InvalidChainFound: Warning: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.
ProcessBlock: ACCEPTED
received block 000000015c72c06b9d2c50b53a3882596aeadfdd3dc84a48022ef9f164e800ae
  nActualTimespan = 132  before bounds
GetNextWorkRequired RETARGET
nTargetTimespan = 1080    nActualTimespan = 1069
Before: 1d021e44  000000021e440000000000000000000000000000000000000000000000000000
After:  1d0218be  0000000218be17b425ed097b425ed097b425ed097b425ed097b425ed097b425e
InvalidChainFound: invalid block=000000015c72c06b9d2c50b53a3882596aeadfdd3dc84a48022ef9f164e800ae  height=2972  log2_work=39,537237  date=2014-02-02 21:27:32
InvalidChainFound:  current best=000009fc55f7f0b67e10e1d9f013b18b741a46ab58828a7106263e465218a847  height=24  log2_work=24,65278  date=2014-02-02 19:22:30
InvalidChainFound: Warning: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.



serious problem with your patch, no ?
generates fork after 24 blocks or something ?
I wish I kept original version for the night at least  Cheesy
1Lef (OP)
Member
**
Offline Offline

Activity: 96
Merit: 10


View Profile
February 03, 2014, 12:09:59 AM
 #40

I considered to stop the nodes. the block reward idea is compromised.
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 »  All
  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!