Search content
Sort by

Showing 20 of 360 results by otila
Post
Topic
Board Games and rounds
Re: 1000 BTC GIVEAWAY! From your friend rekcahxfb
by
otila
on 04/08/2016, 06:33:29 UTC
1EK5J6bXXk8cWhSiftPK1NDSdyA2HZr4j4
Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released
by
otila
on 15/02/2015, 09:37:46 UTC
What boost version have you used ? It looks like and wellknown problem with locale vs boost locale problems.

boost 1.57.0.. what's it doing  Shocked

Code:
[pid  1048] 11:33:23.512095 timerfd_settime(5, 0, {it_interval={0, 0}, it_value={300, 0}}, {it_interval={9223372036854775807, 140734110736360}, it_value={493921239041, 65}}) = 0 <0.000012>
[pid  1048] 11:33:23.512280 open("/.log", O_WRONLY|O_CREAT|O_APPEND, 0666) = -1 EACCES (Permission denied) <0.000016>
[pid  1048] 11:33:23.512350 ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {c_iflags=0x6d02, c_oflags=0x5, c_cflags=0x4bf, c_lflags=0x8a3b, c_line=0, c_cc="\x03\x1c\x7f\x15\x04\x00\x01\xff\x11\x13\x1a\xff\x12\x0f\x17\x16\xff\x00\x00"}) = 0 <0.000013>
[pid  1048] 11:33:23.512408 fstat(1, {st_dev=makedev(0, 12), st_ino=32, st_mode=S_IFCHR|0620, st_nlink=1, st_uid=500, st_gid=5, st_blksize=1024, st_blocks=0, st_rdev=makedev(136, 29), st_atime=2015/02/15-11:33:20, st_mtime=2015/02/15-11:33:20, st_ctime=2015/02/13-11:50:55}) = 0 <0.000010>
[pid  1048] 11:33:23.512493 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8cf782d000 <0.000011>
[pid  1048] 11:33:23.512540 write(1, "\33[1;37mBoolberry wallet v0.3.0.41(6481c84)\33[0m", 46Boolberry wallet v0.3.0.41(6481c84)) = 46 <0.000021>
Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released
by
otila
on 13/02/2015, 10:01:44 UTC
Code:
Core was generated by `simplewallet-boolberry --wallet-file wallet'.
Program terminated with signal SIGABRT, Aborted.
#0  0x00007ffb2508f8c7 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:55
55   return INLINE_SYSCALL (tgkill, 3, pid, selftid, sig);
(gdb) bt
#0  0x00007ffb2508f8c7 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:55
#1  0x00007ffb2509152a in __GI_abort () at abort.c:89
#2  0x00007ffb259c66fd in __gnu_cxx::__verbose_terminate_handler () at ../../../../libstdc++-v3/libsupc++/vterminate.cc:95
#3  0x00007ffb259c4536 in __cxxabiv1::__terminate (handler=) at ../../../../libstdc++-v3/libsupc++/eh_terminate.cc:47
#4  0x00007ffb259c4581 in std::terminate () at ../../../../libstdc++-v3/libsupc++/eh_terminate.cc:57
#5  0x00007ffb259c4799 in __cxxabiv1::__cxa_throw (obj=0x7ffb224862c0,
    tinfo=0x6440a0 >>,
    dest=0x509fc0 >::~clone_impl()>)
    at ../../../../libstdc++-v3/libsupc++/eh_throw.cc:87
#6  0x00000000004f40f5 in void boost::throw_exception(boost::bad_any_cast const&) [clone .isra.817] ()
#7  0x00000000004f41da in std::string command_line::get_arg(boost::program_options::variables_map const&, command_line::arg_descriptor const&) [clone .isra.818] ()
#8  0x00000000004f4470 in currency::simple_wallet::handle_command_line(boost::program_options::variables_map const&) ()
#9  0x00000000004f7caa in currency::simple_wallet::init(boost::program_options::variables_map const&) ()
#10 0x00000000004d577c in main ()

that was latest git source compiled with gcc 4.9.2..
compiling with gcc 5.0.0:

this is easy to fix
Code:
/c/boolberry/contrib/epee/include/storages/portable_storage.h:430:16: warning: converting to ‘bool’ from ‘std::nullptr_t’ requires direct-initialization [-fpermissive]
         return nullptr;
                ^

this is funkier
Code:
[ 87%] Building CXX object src/CMakeFiles/daemon.dir/daemon/daemon.cpp.o
In file included from /c/boolberry/contrib/epee/include/storages/portable_storage_template_helper.h:29:0,
                 from /c/boolberry/contrib/epee/include/storages/levin_abstract_invoke2.h:29,
                 from /c/boolberry/src/p2p/net_node.h:22,
                 from /c/boolberry/src/daemon/daemon.cpp:18:
/c/boolberry/contrib/epee/include/storages/portable_storage.h: In member function ‘bool epee::serialization::portable_storage::get_next_section(epee::serialization::portable_storage::harray, epee::serialization::section*&)’:
/c/boolberry/contrib/epee/include/storages/portable_storage.h:430:16: warning: converting to ‘bool’ from ‘std::nullptr_t’ requires direct-initialization [-fpermissive]
         return nullptr;
                ^
In file included from /c/boolberry/src/p2p/net_node.h:267:0,
                 from /c/boolberry/src/daemon/daemon.cpp:18:
/c/boolberry/src/p2p/net_node.inl: In instantiation of ‘nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback)::::net_server::t_connection_context&, const boost::system::error_code&)>::::p2p_connection_context&)> [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]’:
/c/boolberry/src/p2p/net_node.inl:1108:9:   required from ‘struct nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback)::::net_server::t_connection_context&, const boost::system::error_code&)> [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::net_server::t_connection_context = nodetool::p2p_connection_context_t]:: >::p2p_connection_context&)>’
/c/boolberry/src/p2p/net_node.inl:1091:90:   required from ‘nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback)::::net_server::t_connection_context&, const boost::system::error_code&)> [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::net_server::t_connection_context = nodetool::p2p_connection_context_t]’
/c/boolberry/src/p2p/net_node.inl:1075:117:   required from ‘struct nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback) [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::’
/c/boolberry/src/p2p/net_node.inl:1118:6:   required from ‘bool nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback) [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]’
/c/boolberry/src/p2p/net_node.inl:1198:15:   required from ‘int nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]’
/c/boolberry/src/p2p/net_node.h:113:255:   required from ‘int nodetool::node_server::handle_invoke_map(bool, int, const string&, std::string&, t_context&, bool&) [with t_context = nodetool::p2p_connection_context_t; t_payload_net_handler = currency::t_currency_protocol_handler; std::string = std::basic_string]’
/c/boolberry/src/p2p/net_node.h:109:161:   required from ‘int nodetool::node_server::invoke(int, const string&, std::string&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; std::string = std::basic_string; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]’
/c/boolberry/src/daemon/daemon.cpp:254:1:   required from here
/c/boolberry/src/p2p/net_node.inl:1103:371: error: redeclaration of ‘const peerid_type pr’
In file included from /c/boolberry/src/p2p/net_node.h:267:0,
                 from /c/boolberry/src/daemon/daemon.cpp:18:
/c/boolberry/src/p2p/net_node.inl:1101:37: note: ‘const peerid_type pr’ previously declared here
         if(rsp.status != PING_OK_RESPONSE_STATUS_TEXT || pr != rsp.peer_id)
                                     ^
In file included from /c/boolberry/src/p2p/net_node.h:267:0,
                 from /c/boolberry/src/daemon/daemon.cpp:18:
/c/boolberry/src/p2p/net_node.inl: In instantiation of ‘nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback)::::net_server::t_connection_context&, const boost::system::error_code&)> [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::net_server::t_connection_context = nodetool::p2p_connection_context_t]’:
/c/boolberry/src/p2p/net_node.inl:1075:117:   required from ‘struct nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback) [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::’
/c/boolberry/src/p2p/net_node.inl:1118:6:   required from ‘bool nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback) [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]’
/c/boolberry/src/p2p/net_node.inl:1198:15:   required from ‘int nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]’
/c/boolberry/src/p2p/net_node.h:113:255:   required from ‘int nodetool::node_server::handle_invoke_map(bool, int, const string&, std::string&, t_context&, bool&) [with t_context = nodetool::p2p_connection_context_t; t_payload_net_handler = currency::t_currency_protocol_handler; std::string = std::basic_string]’
/c/boolberry/src/p2p/net_node.h:109:161:   required from ‘int nodetool::node_server::invoke(int, const string&, std::string&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; std::string = std::basic_string; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]’
/c/boolberry/src/daemon/daemon.cpp:254:1:   required from here
/c/boolberry/src/p2p/net_node.inl:1092:9: sorry, unimplemented: non-trivial designated initializers not supported
         [=](int code, const COMMAND_PING::response& rsp, p2p_connection_context& context)
         ^
In file included from /c/boolberry/contrib/epee/include/net/abstract_tcp_server2.h:275:0,
                 from /c/boolberry/contrib/epee/include/net/levin_server_cp2.h:32,
                 from /c/boolberry/src/p2p/net_node.h:20,
                 from /c/boolberry/src/daemon/daemon.cpp:18:
/c/boolberry/contrib/epee/include/net/abstract_tcp_server2.inl: At global scope:
/c/boolberry/contrib/epee/include/net/abstract_tcp_server2.inl:745:8: warning: ‘bool epee::net_utils::boosted_tcp_server::connect_async(const string&, const string&, uint32_t, t_callback, const string&) [with t_callback = nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback) [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_protocol_handler = epee::levin::async_protocol_handler >; std::string = std::basic_string; uint32_t = unsigned int]’, declared using local type ‘nodetool::node_server::try_ping(nodetool::basic_node_data&, nodetool::node_server::p2p_connection_context&, t_callback) [with t_callback = nodetool::node_server::handle_handshake(int, typename nodetool::node_server::COMMAND_HANDSHAKE::request&, typename nodetool::node_server::COMMAND_HANDSHAKE::response&, nodetool::node_server::p2p_connection_context&) [with t_payload_net_handler = currency::t_currency_protocol_handler; typename nodetool::node_server::COMMAND_HANDSHAKE::request = nodetool::COMMAND_HANDSHAKE_T::request; typename nodetool::node_server::COMMAND_HANDSHAKE::response = nodetool::COMMAND_HANDSHAKE_T::response; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::; t_payload_net_handler = currency::t_currency_protocol_handler; nodetool::node_server::p2p_connection_context = nodetool::p2p_connection_context_t; typename t_payload_net_handler::connection_context = currency::currency_connection_context]::’, is used but never defined [-fpermissive]
   bool boosted_tcp_server::connect_async(const std::string& adr, const std::string& port, uint32_t conn_timeout, t_callback cb, const std::string& bind_ip)
        ^
src/CMakeFiles/daemon.dir/build.make:54: recipe for target 'src/CMakeFiles/daemon.dir/daemon/daemon.cpp.o' failed
make[3]: *** [src/CMakeFiles/daemon.dir/daemon/daemon.cpp.o] Error 1
Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released
by
otila
on 13/02/2015, 09:48:38 UTC
Please update cpuminer-multi before 64 MiB limit is reached. CZ's curl downloading code overwrites the scratchpad before writing to a temporary file first.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DRK] Darkcoin | First Anonymous Coin | Inventor of X11, DGW and Darksend | InstantX
by
otila
on 01/02/2015, 21:29:48 UTC
does not sync past block 164103.  19 connections.
version git-7fafe5d3e1d

Quote
2015-02-01 21:24:08 mnw - winner out of range CTxIn(COutPoint(46eeed6f0f0c5028aff6fdbc8778215514e6e2c84ea9cb193201c9a91b077ffc, 1), scriptSig=) Height 213070 bestHeight 164103
2015-02-01 21:24:08 mnw - winner out of range CTxIn(COutPoint(46eeed6f0f0c5028aff6fdbc8778215514e6e2c84ea9cb193201c9a91b077ffc, 1), scriptSig=) Height 213070 bestHeight 164103
2015-02-01 21:24:08 CheckBlock() : Skipping masternode payment check - nHeight 164104 Hash 00000000000e22a7e74c1f4b7c39403cfad24aa090ba8e3edbda3865bc5e32aa
2015-02-01 21:24:08 ProcessBlock: ORPHAN BLOCK 0, prev=00000000000396b586cb6d13c9d552e3ca8cec5b1a42d6017c9ee4917f837d58
2015-02-01 21:24:08 mnw - winner out of range CTxIn(COutPoint(46eeed6f0f0c5028aff6fdbc8778215514e6e2c84ea9cb193201c9a91b077ffc, 1), scriptSig=) Height 213070 bestHeight 164103
Post
Topic
Board Announcements (Altcoins)
Re: Vertcoin - First Scrypt N | First Stealth Address - Privacy without mixer
by
otila
on 13/11/2014, 00:37:21 UTC
Does not compile.
I guess I am supposed to google for secp256k1 and install the first one found, since README.md and this thread is missing the relevant info.

Code:
g++ -c -m64 -pipe -fstack-protector-all -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -std=c++0x -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -D_REENTRANT -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -fPIE -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DUSE_SSE2 -DLINUX -D_FILE_OFFSET_BITS=64 -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/lib64/qt5/mkspecs/linux-g++-64 -Isrc -Isrc/json -Isrc/qt -Isrc/leveldb/include -Isrc/leveldb/helpers -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/qt5/QtNetwork -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtCore -Ibuild -Ibuild -o build/bitcoin.o src/qt/bitcoin.cpp
In file included from src/main.h:13:0,
                 from src/wallet.h:13,
                 from src/init.h:8,
                 from src/qt/bitcoin.cpp:13:
src/stealth.h:19:23: fatal error: secp256k1.h: No such file or directory
 #include
                       ^
Post
Topic
Board Speculation (Altcoins)
Re: [XMR] Monero Speculation
by
otila
on 09/11/2014, 10:54:38 UTC
Also, the recent seizure of underground markets, primarily Silk Road 2, and the arrest of several vendors using those markets, should increase adoption with anonymity coins i.e Monero.

I'd hope so .. but what overall led to the markets getting their servers seized?

Were there any explicit details on how information was compromised?

some speculation...
[tor-dev] yes hello, internet supervillain here https://lists.torproject.org/pipermail/tor-dev/2014-November/007731.html
Post
Topic
Board Altcoin Discussion
Re: Crypto Kingdom - 1991 Retro Virtual World(City)
by
otila
on 07/11/2014, 19:07:23 UTC
15 shares for me.
Post
Topic
Board Altcoin Discussion
Re: Crypto Kingdom - 1991 Retro Virtual World(City)
by
otila
on 06/11/2014, 23:08:04 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][GAP] Gapcoin - Prime Gap Search - New Math Algo - CPU only - Zero Premine
by
otila
on 02/11/2014, 01:12:12 UTC
does not compile with gcc 4.9.1:
Code:
PoWCore/src/PoWUtils.h:299:36: error: ‘constexpr’ needed for in-class initialization of static data member ‘const double PoWUtils::accuracy’ of non-integral type [-fpermissive]
     static const double accuracy = 7.105427357601002e-15;
                                    ^

with -std=gnu++11 and constexpr in PowUtils.h:
Code:
chainparams.cpp: In constructor ‘CMainParams::CMainParams()’:
chainparams.cpp:75:40: error: ambiguous overload for ‘operator=’ (operand types are ‘std::vector’ and ‘boost::assign_detail::generic_list’)
         base58Prefixes[PUBKEY_ADDRESS] = list_of(38);
                                        ^
chainparams.cpp:75:40: note: candidates are:
In file included from /usr/include/c++/4.9.1/vector:69:0,
                 from /usr/include/c++/4.9.1/bits/random.h:34,
                 from /usr/include/c++/4.9.1/random:49,
                 from /usr/include/c++/4.9.1/bits/stl_algo.h:66,
                 from /usr/include/c++/4.9.1/algorithm:62,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:42,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/thread/thread_time.hpp:9,
                 from /usr/include/boost/thread/lock_types.hpp:18,
                 from /usr/include/boost/thread/pthread/mutex.hpp:14,
                 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 chainparams.cpp:6:
/usr/include/c++/4.9.1/bits/vector.tcc:167:5: note: std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(const std::vector<_Tp, _Alloc>&) [with _Tp = unsigned char; _Alloc = std::allocator]
     vector<_Tp, _Alloc>::
     ^
In file included from /usr/include/c++/4.9.1/vector:64:0,
                 from /usr/include/c++/4.9.1/bits/random.h:34,
                 from /usr/include/c++/4.9.1/random:49,
                 from /usr/include/c++/4.9.1/bits/stl_algo.h:66,
                 from /usr/include/c++/4.9.1/algorithm:62,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:42,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/thread/thread_time.hpp:9,
                 from /usr/include/boost/thread/lock_types.hpp:18,
                 from /usr/include/boost/thread/pthread/mutex.hpp:14,
                 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 chainparams.cpp:6:
/usr/include/c++/4.9.1/bits/stl_vector.h:448:7: note: std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(std::vector<_Tp, _Alloc>&&) [with _Tp = unsigned char; _Alloc = std::allocator]
       operator=(vector&& __x) noexcept(_Alloc_traits::_S_nothrow_move())
       ^
In file included from /usr/include/c++/4.9.1/vector:64:0,
                 from /usr/include/c++/4.9.1/bits/random.h:34,
                 from /usr/include/c++/4.9.1/random:49,
                 from /usr/include/c++/4.9.1/bits/stl_algo.h:66,
                 from /usr/include/c++/4.9.1/algorithm:62,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:42,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/thread/thread_time.hpp:9,
                 from /usr/include/boost/thread/lock_types.hpp:18,
                 from /usr/include/boost/thread/pthread/mutex.hpp:14,
                 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 chainparams.cpp:6:
/usr/include/c++/4.9.1/bits/stl_vector.h:470:7: note: std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(std::initializer_list<_Tp>) [with _Tp = unsigned char; _Alloc = std::allocator]
       operator=(initializer_list __l)
       ^
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ██ ZEITCⓞIN MOVEMENT [FULLY POS] ██ Minticator, 25% interest 1 year
by
otila
on 30/10/2014, 17:41:37 UTC
To get you started download the following and copy it over your peers file.
https://www.dropbox.com/s/x0vkd42840abcfi/Zeitcoin-Peers.zip?dl=0

Thanks, there were some working nodes in your list..

Code:
addnode=108.48.45.14
addnode=109.88.216.46
addnode=144.76.79.18
addnode=5.39.90.17
addnode=72.208.23.155
addnode=81.224.140.225
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ██ ZEITCⓞIN MOVEMENT [FULLY POS] ██ Minticator, 25% interest 1 year
by
otila
on 30/10/2014, 12:28:14 UTC
Latest version v2.0.1.3 fails to start, "Error loading blkindex.dat".  Same with your latest blockchain zip.
x86_64 Linux.

And no nodes found on startup.
Post
Topic
Board Speculation (Altcoins)
Re: [XMR] Monero Speculation
by
otila
on 28/10/2014, 00:16:02 UTC
The key is the only relevant part of the wallet. The rest of the files are irrelevant. The bin file is just a cache of some blockchain data and the address file is just the public address.

If Ryan has the key, then he has the coins. (I don't know if this is the case.)


comment by "BigBalls" in that tweet:
moolah has the keys to V2. Mintpal has the coins from V1. There cud have been trading between the two.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Woodcoin [LOG] Pure Skein, Logarithmic Release, X9_62_prime256v1
by
otila
on 25/10/2014, 17:35:31 UTC
TX's the only thing affected by the old client? Solo mining still OK?

I found a block solomining, but it was not accepted, maybe because of that tx generated earlier by older wallet.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Woodcoin [LOG] Pure Skein, Logarithmic Release, X9_62_prime256v1
by
otila
on 25/10/2014, 16:15:38 UTC
Code:
2014-10-25 16:05:05 ERROR: mempool transaction missing input
2014-10-25 16:05:05 CreateNewBlock(): total size 23755
2014-10-25 16:05:05 Running WoodcoinMiner with 8 transactions in block (22943 bytes)

my tx does not get confirmed, I created it with the older wallet, now running git-57d5da74.
I then restarted with -reindex

Code:
2014-10-25 16:14:19 CreateNewBlock(): total size 3389
2014-10-25 16:14:19 Running WoodcoinMiner with 3 transactions in block (2577 bytes)

and my tx shows up as Unconfirmed (-1 of 6 confirmations)
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Woodcoin [LOG] Pure Skein, Logarithmic Release, X9_62_prime256v1
by
otila
on 24/10/2014, 20:03:42 UTC
I think this will continue until the majority upgrade to the latest version.
I wonder how many days it takes to "git pull" and "make"..  Tongue
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Woodcoin [LOG] Pure Skein, Logarithmic Release, X9_62_prime256v1
by
otila
on 24/10/2014, 19:48:15 UTC
(Big) transactions do not get confirmed.  One tx has been unconfirmed for 30 hours.
Running git 2bd9f42c.

Code:
getblockhash 2301
eb065474aa1d46c4151d43b1679adade95358255a5fef9b2aabc6efe263bf573
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][PHS][50% PoS] PhilosopherStone | NoPremine |10 month Dist | 1.6.4.1
by
otila
on 21/10/2014, 18:10:11 UTC
Ubuntu / Nix terminal
Code:
sudo ntpdate ntp.ubuntu.com

That sets time once and then it starts drifting into the wrong direction. To enable NTP service so that it constantly readjusts clock speed:
Code:
apt-get install chrony

Let it run for some time, then
Code:
chronyc sources

System-specific time drift is stored in /var/lib/chrony/drift .
Post
Topic
Board Altcoin Discussion
Re: Crypto Kingdom - 1991 Retro Virtual World(Town)
by
otila
on 10/10/2014, 20:14:14 UTC
Will it be done in HTML5?
Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released
by
otila
on 09/10/2014, 20:36:11 UTC
I wonder if clintar's address donation format (YOURADDRESS#DONATIONADDRESS%PERCENT) can be expanded to include multiple donations
e.g., YOURADDRESS#DONATIONADDRESS1%PERCENT#DONATIONADDRESS2%PERCENT
Or will it hit the command line limit?

Code:
$ getconf ARG_MAX
2097152
$ ulimit -s 32768
$ getconf ARG_MAX
8388608

(getconf in bytes, ulimit in kilobytes)
Windows users unfortunately have probably smaller limits.