Pages:
Author

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

jr. member
Activity: 65
Merit: 5
1.7 is broken IIRC. Use 1.6.

Cthulhu.tk redirects to some other site now and difficulty is sky high = no blocks for 6 days. Bummer.
member
Activity: 166
Merit: 16
After testing other wallets all the namecoin spin-offs fail, something with the libboost I think. I installed libboost 1.53 - tried so many variations I can barely think straight, messed with makefiles and where they had them configure files and I got it to go a bit farther with some adjustments, but still fails every time.
legendary
Activity: 1848
Merit: 1001
after over a week of no connections on cryptopia, the same day i posted these 8 nodes, topia is back functioning.

call it a fluke.
member
Activity: 166
Merit: 16
addnode=108.61.170.22
addnode=204.154.240.214
addnode=24.225.169.46
addnode=37.193.137.154
addnode=66.234.202.193
addnode=75.180.19.174
addnode=80.110.117.1
addnode=80.110.117.235

Had issues compiling.. 1.7 compiled fine but ...no go.. (connection-wise) then gaspar's? 1.6.2 gave me fits and I never got it to compile. I tried everything I could think of and then gave up. Smiley it was a lark, but it does bother me that I couldn't get it to run.
legendary
Activity: 1848
Merit: 1001
addnode=108.61.170.22
addnode=204.154.240.214
addnode=24.225.169.46
addnode=37.193.137.154
addnode=66.234.202.193
addnode=75.180.19.174
addnode=80.110.117.1
addnode=80.110.117.235
member
Activity: 166
Merit: 16
oh well it was a nifty thought for a moment, but libboost1.53-all-dev seems to be more elusive than I at first thought.
-night.
member
Activity: 166
Merit: 16
Hahaha soo I go through all that, figure I did something wrong.. mess with it, fight with it.. curse it some.. and then come back here and start scrolling back.. so yeaaaah.. going to get 1.6.2 now..   Smiley
member
Activity: 166
Merit: 16
OFF need some nodes, Cryptopia have no connections and soon may delist Offerings.

working on that right now! Smiley I was just poking around and found this, waaaaaaay back when I got an OFF wallet (it is still on my laptop actually, just hasn't been run in a gazillion years and probably not even the wallet file is compatable anymore hehe) So I thought "Why not"?  and I'll be putting up a node as soon as I get it all compiled etc...
full member
Activity: 162
Merit: 100
Forgive us, oh mighty one, for we have abandoned thee...

  Embarrassed
hero member
Activity: 982
Merit: 517
Nature decays, but Latinum lasts forever. RoA:102
Node not on default port because of router and removed UPnP in last version OFF
You must set port 20000 in router manually to IP in local network on which OFF wallet running.
full member
Activity: 150
Merit: 111
OFF need some nodes, Cryptopia have no connections and soon may delist Offerings.

https://chainz.cryptoid.info/off/#!network
This is only list of connections, only 2 node in OFF now. Only wallet on default port can be added to config.

port=20000
addnode=109.201.140.97:20000
addnode=77.34.237.43:20000

Sorry to be stupid but explain how to solve that, please.

You can also add the nodes using the console (click on Text Based Worship and Console)

type in: addnode 109.201.140.97:20000 add
sr. member
Activity: 462
Merit: 250
OFF need some nodes, Cryptopia have no connections and soon may delist Offerings.

https://chainz.cryptoid.info/off/#!network
This is only list of connections, only 2 node in OFF now. Only wallet on default port can be added to config.

port=20000
addnode=109.201.140.97:20000
addnode=77.34.237.43:20000

Sorry to be stupid but explain how to solve that, please.
hero member
Activity: 982
Merit: 517
Nature decays, but Latinum lasts forever. RoA:102
OFF need some nodes, Cryptopia have no connections and soon may delist Offerings.

https://chainz.cryptoid.info/off/#!network
This is only list of connections, only 2 node in OFF now. Only wallet on default port can be added to config.

port=20000
addnode=109.201.140.97:20000
addnode=77.34.237.43:20000
sr. member
Activity: 462
Merit: 250
OFF need some nodes, Cryptopia have no connections and soon may delist Offerings.

https://chainz.cryptoid.info/off/#!network
hero member
Activity: 982
Merit: 517
Nature decays, but Latinum lasts forever. RoA:102
OFF need some nodes, Cryptopia have no connections and soon may delist Offerings.
jr. member
Activity: 65
Merit: 5
What version of the boost library are you building against?

Coming back to this... (about 1/2 the coins I get into seem to have compilation challenges and I'd gotten distracted by other things)...

After searching for this info I found using the command
dpkg -S /usr/include/boost/version.hpp the output of "libboost1.58-dev:amd64"

(Also when I open that file in a text editor, embedded in there are the lines: 
" #define BOOST_VERSION 105800 "
and #define BOOST_LIB_VERSION "1_58"  ).  So evidently boost version 1.58.

What is the function/role of boost anyway? (I see it probably every time in all the readme's and required libraries for coins but its function is obscure to me.)
If the version of boost that I'm using is too new for the coin (I update using apt-get regularly) how would I compile using an older version -- without throwing too many wrenches in the system by rolling-back to a superceded
boost which I probably don't want for anything other than occasionally building/compiling the less noob-friendly coins?


I also get this error when I try to build against boost 1.58 (I'm not sure what it's use is either but it seems popular among C++-programmers ).

The solution is here: https://github.com/bitcoin/bitcoin/issues/6113

Open the file

    rpcrawtransaction.cpp

and search for this line

const CScriptID& hash = boost::get(address);

It should work after changed to

const CScriptID& hash = boost::get(address);
member
Activity: 164
Merit: 71
What version of the boost library are you building against?

Coming back to this... (about 1/2 the coins I get into seem to have compilation challenges and I'd gotten distracted by other things)...

After searching for this info I found using the command
dpkg -S /usr/include/boost/version.hpp the output of "libboost1.58-dev:amd64"

(Also when I open that file in a text editor, embedded in there are the lines: 
" #define BOOST_VERSION 105800 "
and #define BOOST_LIB_VERSION "1_58"  ).  So evidently boost version 1.58.

What is the function/role of boost anyway? (I see it probably every time in all the readme's and required libraries for coins but its function is obscure to me.)
If the version of boost that I'm using is too new for the coin (I update using apt-get regularly) how would I compile using an older version -- without throwing too many wrenches in the system by rolling-back to a superceded
boost which I probably don't want for anything other than occasionally building/compiling the less noob-friendly coins?
jr. member
Activity: 65
Merit: 5
What version of the boost library are you building against?
member
Activity: 164
Merit: 71
I downloaded and compiled the version from Github (which seems to be 1.7 from the README.md) on Ubuntu.  As expected from the comments, the most-updated version didn't seem to find any connections after I prepared the config file with the nodes I could find that seemed active recently; that is, the config file contains:

addnode=5.58.42.119:20000
addnode=24.225.155.33:20000
addnode=46.105.62.121:20000
addnode=46.175.27.155:20000
addnode=51.254.45.117:20000
addnode=54.89.21.44:20000
addnode=67.182.13.173:20000
addnode=67.240.248.216:20000
addnode=72.241.235.204:20000
addnode=85.236.188.28:20000
addnode=108.61.170.22:20000
addnode=144.76.91.109:20000
addnode=172.104.156.182:20000
addnode=184.164.129.202:20000 .


I also tried the third version down on the commits page ( https://github.com/thegreatoldone/offerings/commits/master ) which is 1.6 but had compilation issues:

"In file included from /usr/include/boost/move/detail/type_traits.hpp:34:0,
                 from /usr/include/boost/move/core.hpp:54,
                 from /usr/include/boost/move/utility_core.hpp:29,
                 from /usr/include/boost/move/utility.hpp:28,
                 from /usr/include/boost/thread/detail/move.hpp:27,
                 from /usr/include/boost/thread/lock_types.hpp:11,
                 from /usr/include/boost/thread/pthread/mutex.hpp:16,
                 from /usr/include/boost/thread/mutex.hpp:16,
                 from allocators.h:13,
                 from serialize.h:9,
                 from bignum.h:9,
                 from chainparams.h:9,
                 from base58.h:17,
                 from rpcrawtransaction.cpp:6:
/usr/include/boost/variant/get.hpp: In instantiation of ‘typename boost::add_reference::type boost::strict_get(boost::variant&) [with U = const CScriptID&; T0 = CNoDestination; T1 = CKeyID; T2 = CScriptID; T3 = boost::detail::variant::void_; T4 = boost::detail::variant::void_; T5 = boost::detail::variant::void_; T6 = boost::detail::variant::void_; T7 = boost::detail::variant::void_; T8 = boost::detail::variant::void_; T9 = boost::detail::variant::void_; T10 = boost::detail::variant::void_; T11 = boost::detail::variant::void_; T12 = boost::detail::variant::void_; T13 = boost::detail::variant::void_; T14 = boost::detail::variant::void_; T15 = boost::detail::variant::void_; T16 = boost::detail::variant::void_; T17 = boost::detail::variant::void_; T18 = boost::detail::variant::void_; T19 = boost::detail::variant::void_; typename boost::add_reference::type = const CScriptID&]’:
/usr/include/boost/variant/get.hpp:284:25:   required from ‘typename boost::add_reference::type boost::get(boost::variant&) [with U = const CScriptID&; T0 = CNoDestination; T1 = CKeyID; T2 = CScriptID; T3 = boost::detail::variant::void_; T4 = boost::detail::variant::void_; T5 = boost::detail::variant::void_; T6 = boost::detail::variant::void_; T7 = boost::detail::variant::void_; T8 = boost::detail::variant::void_; T9 = boost::detail::variant::void_; T10 = boost::detail::variant::void_; T11 = boost::detail::variant::void_; T12 = boost::detail::variant::void_; T13 = boost::detail::variant::void_; T14 = boost::detail::variant::void_; T15 = boost::detail::variant::void_; T16 = boost::detail::variant::void_; T17 = boost::detail::variant::void_; T18 = boost::detail::variant::void_; T19 = boost::detail::variant::void_; typename boost::add_reference::type = const CScriptID&]’
rpcrawtransaction.cpp:299:77:   required from here
/usr/include/boost/variant/get.hpp:178:5: error: invalid application of ‘sizeof’ to incomplete type ‘boost::STATIC_ASSERTION_FAILURE
     BOOST_STATIC_ASSERT_MSG(
     ^
Makefile:874: recipe for target 'rpcrawtransaction.o' failed
"

So what would be the best way to make my offerings to the Ancient Ones on Ubuntu (which version should I try or has the no-connections issue with version 1.7 been resolved somehow)?
full member
Activity: 1204
Merit: 220
(ノಠ益ಠ)ノ
still no 1.7 nodes? can't even find 1.6 for mac
Pages:
Jump to: