Pages:
Author

Topic: . - page 3. (Read 49286 times)

newbie
Activity: 25
Merit: 100
September 15, 2015, 07:47:37 AM
new win client is downloading blocks..

upto 111000 now and moving

Thanks a lot!

160k blocks now and moving...  got restart meanwhile..

(i have not a single crave, just for fun)

PM Me! Your Crave Address
legendary
Activity: 910
Merit: 1000
September 15, 2015, 07:42:31 AM
new win client is downloading blocks..

upto 111000 now and moving

Thanks a lot!

160k blocks now and moving...  got restart meanwhile..

(i have not a single crave, just for fun)

edit: 170K
edit: 186368
newbie
Activity: 25
Merit: 100
September 15, 2015, 07:37:50 AM
new win client is downloading blocks..

upto 111000 now and moving

Thanks a lot!
newbie
Activity: 25
Merit: 100
September 15, 2015, 07:37:40 AM
Okay - Major Unupdated and Minor Updated, I have patched and caused the old clients to be blocked by the new ones...

We will require a windows binary compile again...

This is the link to the Windows 32-bit binaries:
https://github.com/laptoptip/crave/releases/download/v2015.09.14/crave-oxytocin-win32.7z


Damn! We will have to compile now again

This is the link to the newly compiled Windows 32-bit binary (Crave Oxytocin release candidate 3):
https://github.com/laptoptip/crave/releases/download/v2015.09.15/crave-oxytocin-win32-rc3.7z



You have covered my ass a lot, PM Me your address
legendary
Activity: 910
Merit: 1000
September 15, 2015, 06:25:29 AM
new win client is downloading blocks..

upto 111000 now and moving
full member
Activity: 229
Merit: 100
September 14, 2015, 11:15:01 PM
Okay - Major Unupdated and Minor Updated, I have patched and caused the old clients to be blocked by the new ones...

We will require a windows binary compile again...

This is the link to the Windows 32-bit binaries:
https://github.com/laptoptip/crave/releases/download/v2015.09.14/crave-oxytocin-win32.7z


Damn! We will have to compile now again

This is the link to the newly compiled Windows 32-bit binary (Crave Oxytocin release candidate 3):
https://github.com/laptoptip/crave/releases/download/v2015.09.15/crave-oxytocin-win32-rc3.7z

newbie
Activity: 25
Merit: 100
September 14, 2015, 09:49:53 PM
Okay - Major Unupdated and Minor Updated, I have patched and caused the old clients to be blocked by the new ones...

We will require a windows binary compile again...

This is the link to the Windows 32-bit binaries:
https://github.com/laptoptip/crave/releases/download/v2015.09.14/crave-oxytocin-win32.7z


Damn! We will have to compile now again
newbie
Activity: 25
Merit: 100
September 14, 2015, 09:48:36 PM
"That is 10000 Cravetoshi...."

over looked that..

Okay... Smiley

// only request blocks from nodes outside this range of versions
static const int NOBLKS_VERSION_START = 0;
static const int NOBLKS_VERSION_END = 80000;

should be 69999
or if rules are ok, 60019

version.h still messed at git

from other parts it seem fine to test
// only request blocks from nodes outside this range of versions
static const int NOBLKS_VERSION_START = 0;
static const int NOBLKS_VERSION_END = 80000;

should be 69999
or if rules are ok, 60019

version.h still messed at git

from other parts it seem fine to test

Done
legendary
Activity: 910
Merit: 1000
September 14, 2015, 09:39:04 PM
// only request blocks from nodes outside this range of versions
static const int NOBLKS_VERSION_START = 0;
static const int NOBLKS_VERSION_END = 80000;

should be 69999
or if rules are ok, 60019

version.h still messed at git

from other parts it seem fine to test
legendary
Activity: 910
Merit: 1000
September 14, 2015, 09:29:01 PM
"That is 10000 Cravetoshi...."

over looked that..
newbie
Activity: 25
Merit: 100
September 14, 2015, 09:16:41 PM
pow reward after OXYTOCIN fork 10000 crave/block


// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 10000;
    
   if(pindexBest->nHeight < FORK_OXYTOCIN)
   {
      nSubsidy = 100 * COIN;
   }
    LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);

    return nSubsidy + nFees;

That is 10000 Cravetoshi....

first invalid block:266

    d233973124d21713a417fe3324ba7a011f49a1d1bdf12c3ff38d409879a517d6
    100.00009 CRAVE
    Generation + Fees
    Btnxs7bDuDpuqZCM...
    SuprNova.cc
    100.00009 CRAVE

as you see this breaks the fee rules of current source, source wants 0.0001 paid 0.00009

-static const int64_t MIN_TX_FEE = 1000;
+static const int64_t MIN_TX_FEE = 10000;

you cant do this without fork rule, revert it.

Done
legendary
Activity: 910
Merit: 1000
September 14, 2015, 03:41:03 PM
pow reward after OXYTOCIN fork 10000 crave/block


// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 10000;
    
   if(pindexBest->nHeight < FORK_OXYTOCIN)
   {
      nSubsidy = 100 * COIN;
   }
    LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);

    return nSubsidy + nFees;
legendary
Activity: 910
Merit: 1000
September 14, 2015, 02:52:08 PM
first invalid block:266

    d233973124d21713a417fe3324ba7a011f49a1d1bdf12c3ff38d409879a517d6
    100.00009 CRAVE
    Generation + Fees
    Btnxs7bDuDpuqZCM...
    SuprNova.cc
    100.00009 CRAVE

as you see this breaks the fee rules of current source, source wants 0.0001 paid 0.00009

-static const int64_t MIN_TX_FEE = 1000;
+static const int64_t MIN_TX_FEE = 10000;

you cant do this without fork rule, revert it.
legendary
Activity: 910
Merit: 1000
September 14, 2015, 02:30:51 PM
// only request blocks from nodes outside this range of versions
static const int NOBLKS_VERSION_START = 0;
static const int NOBLKS_VERSION_END = 80000;

should be 69999
or if rules are ok, 60019
newbie
Activity: 25
Merit: 100
September 14, 2015, 02:21:30 PM
did you notice this line:

not paying required fee=0.0001, paid=0.00009

I hiked the fees..
newbie
Activity: 25
Merit: 100
September 14, 2015, 12:47:14 PM

Nobody helps me out here?  Niitassin ? Give a link to blockchain although I myself downloaded . My new  wallen not does not synchronize

What happened is I banned old clients and because most people are to lazy (some can't) to update so the new client can't get much peers

Okay - Major Unupdated and Minor Updated, I have patched and caused the old clients to be blocked by the new ones...

We will require a windows binary compile again...

This is the link to the Windows 32-bit binaries:
https://github.com/laptoptip/crave/releases/download/v2015.09.14/crave-oxytocin-win32.7z


Thank You!

When I run the new client, it looks like it is trying to fork. The network weight is only 1100 and my weight is 1500.

Did you update your client to latest now....?
full member
Activity: 154
Merit: 100
September 14, 2015, 12:33:07 PM

Nobody helps me out here?  Niitassin ? Give a link to blockchain although I myself downloaded . My new  wallen not does not synchronize
legendary
Activity: 910
Merit: 1000
September 14, 2015, 11:41:55 AM
did you notice this line:

not paying required fee=0.0001, paid=0.00009
newbie
Activity: 58
Merit: 0
September 14, 2015, 09:33:47 AM
When I run the new client, it looks like it is trying to fork. The network weight is only 1100 and my weight is 1500.
full member
Activity: 229
Merit: 100
September 14, 2015, 01:11:52 AM
Okay - Major Unupdated and Minor Updated, I have patched and caused the old clients to be blocked by the new ones...

We will require a windows binary compile again...

This is the link to the Windows 32-bit binaries:
https://github.com/laptoptip/crave/releases/download/v2015.09.14/crave-oxytocin-win32.7z
Pages:
Jump to: