Pages:
Author

Topic: Offerings to Cthulhu - 1.4 is Here! Now accepted at Coinworks.info - page 9. (Read 101007 times)

full member
Activity: 128
Merit: 100
INSERT COIN
Here is the v1.6.2.0-Bokrug wallet compiled by one who remains nameless.

https://www.virustotal.com/en/file/2d4e464a22bfa9a24dd9af82dc22d783ceac2e9c75bbd42c6a896f581f533ba1/analysis/1461305286/

https://mega.nz/#!zwgGnZoK!wYZ7cShhLHmmjE4rNxshZ_HQJEBxvyjhWAgk425sZn8

Address for Offerings to the nameless one who did the work.

QcCmboPWZ9wfdA987hDFJmdafeXeSdU5Y2


A small token gesture have been sent your way, fellow cultist Smiley
hero member
Activity: 658
Merit: 500
version 1.6 for windows?


Here is the v1.6.2.0-Bokrug wallet compiled by one who remains nameless.

https://www.virustotal.com/en/file/2d4e464a22bfa9a24dd9af82dc22d783ceac2e9c75bbd42c6a896f581f533ba1/analysis/1461305286/

https://mega.nz/#!zwgGnZoK!wYZ7cShhLHmmjE4rNxshZ_HQJEBxvyjhWAgk425sZn8

Address for Offerings to the nameless one who did the work.

QcCmboPWZ9wfdA987hDFJmdafeXeSdU5Y2
legendary
Activity: 1848
Merit: 1001
Offerings has been updated to 1.6.1. This change brings a few 'Core' version bug fixes and the port fixes requested above. New clients should now synch without need for .conf changes.

http://offeringstocthulhu.info/Offerings-win.zip
MD5: 31516889986492bbaa1e7c8d0198219e



Offerings have a new Faucet; Exchange; and are tippable in the Trollbox @ http://cryptopia.co.nz

Is HagbardCeline now considered the OFF Dev?  Have the old time OFF'ers like zeewolf made the switch to version 1.6.1?

I need to find time to compile the wallets from source since the link to download the compiled versions are dead.

PLEASE DO WHAT YOU CAN, AS & WHEN YOU ARE ABLE!

sorry, caps lock!

hero member
Activity: 658
Merit: 500
Offerings has been updated to 1.6.1. This change brings a few 'Core' version bug fixes and the port fixes requested above. New clients should now synch without need for .conf changes.

http://offeringstocthulhu.info/Offerings-win.zip
MD5: 31516889986492bbaa1e7c8d0198219e



Offerings have a new Faucet; Exchange; and are tippable in the Trollbox @ http://cryptopia.co.nz

Is HagbardCeline now considered the OFF Dev?  Have the old time OFF'ers like zeewolf made the switch to version 1.6.1?

I need to find time to compile the wallets from source since the link to download the compiled versions are dead.
full member
Activity: 236
Merit: 100
In dreamland; he awaits you.
Hello plz when the Faucet is back working ? and thanks

Eh... :/ I forgot about that problem. It will be fixed today. Already fixed.
full member
Activity: 266
Merit: 100
Hello plz when the Faucet is back working ? and thanks
legendary
Activity: 1848
Merit: 1001
version 1.6 for windows?
full member
Activity: 236
Merit: 100
In dreamland; he awaits you.
I've started to use an Arch Linux derivative (not Mint) and the Berkeley DB they use is version 5.3 but the source wants 4.8. I can build anyway by supplying a switch to the ./configure script but it warns me of my wallet not being portable. Does this mean that I won't be able to open my wallet with another build of Offerings? Will I be able to open it with a build that uses the same db libs?


Check answer here: https://bitcointalksearch.org/topic/m.5541576
full member
Activity: 128
Merit: 100
INSERT COIN
I've started to use an Arch Linux derivative (not Mint) and the Berkeley DB they use is version 5.3 but the source wants 4.8. I can build anyway by supplying a switch to the ./configure script but it warns me of my wallet not being portable. Does this mean that I won't be able to open my wallet with another build of Offerings? Will I be able to open it with a build that uses the same db libs?
hero member
Activity: 982
Merit: 517
Nature decays, but Latinum lasts forever. RoA:102
OFF version 1.6 have not UPnP and you must add port 20000 to router manually.

Some nodes still on different blockchains, not on main. You must download (1.6 database version):

Here's copy of current (first fork, higher diff) blockchain which I believe is correct one :

https://www.dropbox.com/s/toaucbghd62fo2x/OFF-blockchain-20151203.7z?dl=0

and add only one (Cthulhu.tk) node to config:

addnode=108.61.170.22

other nodes or on different chains or not on default port.

If you get error when compile wallet with UPnP last version,
you must use MINIUPNP_STATICLIB instead STATICLIB
full member
Activity: 236
Merit: 100
In dreamland; he awaits you.
Cryptopia updated to 1.6.2.
full member
Activity: 236
Merit: 100
In dreamland; he awaits you.
I've put ticket @ cryptopia and get assured by staff that it will be passed to admins.
hero member
Activity: 982
Merit: 517
Nature decays, but Latinum lasts forever. RoA:102
Attention! Cryptopia on another  blockchain 1.4 version, different from Cthulhu.tk 1.6 version.
hero member
Activity: 982
Merit: 517
Nature decays, but Latinum lasts forever. RoA:102
Since block 1229140 new version 1.6 no more compatible with old 1.4 version because of difference in function GetMedianTimePast()

Code:
OFF 1.4
enum { nMedianTimeSpan=12 };

    int64 GetMedianTimePast() const
    {
        int64 pmedian[nMedianTimeSpan];
        int64* pbegin = &pmedian[nMedianTimeSpan];
        int64* pend = &pmedian[nMedianTimeSpan];

        const CBlockIndex* pindex = this;
        for (int i = 0; i < nMedianTimeSpan && pindex; i++, pindex = pindex->pprev)
            *(--pbegin) = pindex->GetBlockTime();

        std::sort(pbegin, pend);
        return pbegin[(pend - pbegin)*2/3];
    }
---------------------------
OFF 1.6
enum { nMedianTimeSpan=11 };

    int64_t GetMedianTimePast() const
    {
        int64_t pmedian[nMedianTimeSpan];
        int64_t* pbegin = &pmedian[nMedianTimeSpan];
        int64_t* pend = &pmedian[nMedianTimeSpan];

        const CBlockIndex* pindex = this;
        for (int i = 0; i < nMedianTimeSpan && pindex; i++, pindex = pindex->pprev)
            *(--pbegin) = pindex->GetBlockTime();

        std::sort(pbegin, pend);
        return pbegin[(pend - pbegin)/2];
    }


It is create new fork.
full member
Activity: 236
Merit: 100
In dreamland; he awaits you.
Here's copy of current (first fork, higher diff) blockchain which I believe is correct one :

https://www.dropbox.com/s/toaucbghd62fo2x/OFF-blockchain-20151203.7z?dl=0
sr. member
Activity: 462
Merit: 250
lovecraft is one of my favourite writers, just discovered this coin please do not abandon it
full member
Activity: 236
Merit: 100
In dreamland; he awaits you.
Ohh, looks like it is Sad On block 1223600 (less than 2 days ago).

First one (looks stronger) :
Code:
{
  "version" : 1060100,
  "protocolversion" : 80001,
  "walletversion" : 60000,
  "blocks" : 1226391,
  "connections" : 11,
  "difficulty" : 0.43743075,
  ...
}

Offeringsd getblockhash 1223600
000001d0dde44bb4432cbcada222f41d328e2dbb52a763f5d1d775049ef4d9e4

Second one :

Code:
{
  "version" : 1060100,
  "protocolversion" : 80001,
  "walletversion" : 60000,
  "blocks" : 1226234,
  "connections" : 3,
  "difficulty" : 0.10801113,
  ...
}

getblockhash 1223600
000002213da9e12f1fca2421efe0241759059fe233c5124b34d7cfa295356fc3
Also Cryptopia has OFF wallet on hold.

Help us DEV.
hero member
Activity: 982
Merit: 517
Nature decays, but Latinum lasts forever. RoA:102
Looks like OFF split into 2 different chains.
First - 1225570
Second - 1225874

I think it because error in new version - 11  blocks to mature (30 in old version)
full member
Activity: 236
Merit: 100
In dreamland; he awaits you.
Is HagbardCeline now considered the OFF Dev?  Have the old time OFF'ers like zeewolf made the switch to version 1.6.1?

No worries, HagbardCeline and Blazr2 is same person - the dev, he lost his former account. I'm using 1.6.1 on my main wallet in Windows and on VPS (linux) as deamon for cthulhu.tk - everything works flawlessly.
Pages:
Jump to: