Author

Topic: [LTCD] LitecoinDark.com ★ Scrypt ★ Difficulty Shield ★ Multipool ★ Fast - page 280. (Read 368578 times)

full member
Activity: 297
Merit: 100
newbie
Activity: 42
Merit: 0
At cryptsy it's pretty low still
full member
Activity: 168
Merit: 100
newbie
Activity: 44
Merit: 0
newbie
Activity: 7
Merit: 0
Hi community
Great time for this money I follows from the beginning
Good jobs at all are hoping that the problem in diff either correct it right

Ps: Please BestPool thank you kindly open a stratum with a diff 1024 for users of its asics Zeus would cool or between 700 and 2048 max

cordially @ soon

New ASIC port is ready @best-pool, port 36156 (1000 Locked Diff)

Good support, very fast!
Thank you BestPool  ;^)
full member
Activity: 194
Merit: 100
Cloning from the staging repo is now 1.1.0-pre1.  You need GCC 4.8.0 or better (recommend 4.9.0) to compile it.  -std=c++1y isn't supported by the default GCC in debian 7. 
I have created a server using g++ 4.9 from the Debian testing repository, and I am still getting compilation errors with rpcminer.cpp.  I fixed one issue by replicating Gavin Andersen's solution in the Bitcoin code (at http://sourceforge.net/p/bitcoin/mailman/message/31375039/) and implementing that solution allowed me to get further but not complete the compilation. The current blocker is:
Code:
root@debian-test:~/litecoindark-staging/src# make -f makefile.unix USE_UPNP=1 USE_IPV6=1
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -DBOOST_NO_CXX11_SCOPED_ENUMS -I/root/litecoindark-staging/src -I/root/litecoindark-staging/src/obj -DUSE_UPNP=1 -DUSE_IPV6=1 -I/root/litecoindark-staging/src/leveldb/include -I/root/litecoindark-staging/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2  -std=c++1y -MMD -MF obj/rpcmining.d -o obj/rpcmining.o rpcmining.cpp
In file included from bignum.h:12:0,
                 from main.h:8,
                 from rpcmining.cpp:6:
util.h:245:22: warning: invalid suffix on literal; C++11 requires a space between literal and string macro [-Wliteral-suffix]
     return strprintf("%"PRI64d, n);
                      ^
In file included from main.h:10:0,
                 from rpcmining.cpp:6:
net.h:376:20: warning: invalid suffix on literal; C++11 requires a space between literal and string macro [-Wliteral-suffix]
             printf("askfor %s   %"PRI64d" (%s)\n", inv.ToString().c_str(), nRequestTime, DateTimeStrFormat("%H:%M:%S", nRequestTime/1000000).c_str());
                    ^
In file included from rpcmining.cpp:6:0:
main.h:454:26: warning: invalid suffix on literal; C++11 requires a space between literal and string macro [-Wliteral-suffix]
         return strprintf("CTxOut(nValue=%"PRI64d".%08"PRI64d", scriptPubKey=%s)", nValue / COIN, nValue % COIN, scriptPubKey.ToString().substr(0,30).c_str());
                          ^
main.h:454:49: warning: invalid suffix on literal; C++11 requires a space between literal and string macro [-Wliteral-suffix]
         return strprintf("CTxOut(nValue=%"PRI64d".%08"PRI64d", scriptPubKey=%s)", nValue / COIN, nValue % COIN, scriptPubKey.ToString().substr(0,30).c_str());
                                                 ^
main.h:655:26: warning: invalid suffix on literal; C++11 requires a space between literal and string macro [-Wliteral-suffix]
         str += strprintf("CTransaction(hash=%s, ver=%d, vin.size=%"PRIszu", vout.size=%"PRIszu", nLockTime=%u)\n",
                          ^
main.h:655:74: warning: invalid suffix on literal; C++11 requires a space between literal and string macro [-Wliteral-suffix]
         str += strprintf("CTransaction(hash=%s, ver=%d, vin.size=%"PRIszu", vout.size=%"PRIszu", nLockTime=%u)\n",
                                                                          ^
main.h:1506:16: warning: invalid suffix on literal; C++11 requires a space between literal and string macro [-Wliteral-suffix]
         printf("CBlock(hash=%s, input=%s, PoW=%s, ver=%d, hashPrevBlock=%s, hashMerkleRoot=%s, nTime=%u, nBits=%08x, nNonce=%u, vtx=%"PRIszu")\n",
                ^
rpcmining.cpp: In function ‘json_spirit::Value getblocktemplate(const Array&, bool)’:
rpcmining.cpp:520:59: error: conversion from ‘std::map::mapped_type {aka long int}’ to ‘std::vector > >, std::allocator > > > >::value_type {aka json_spirit::Value_impl > >}’ is ambiguous
                 deps.push_back(setTxIndex[i[Suspicious link removed]evout.hash]);
                                                           ^
rpcmining.cpp:520:59: note: candidates are:
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘std::map::mapped_type {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
In file included from /usr/include/c++/4.9/vector:64:0,
                 from bignum.h:9,
                 from main.h:8,
                 from rpcmining.cpp:6:
/usr/include/c++/4.9/bits/stl_vector.h:931:7: note: initializing argument 1 of ‘void std::vector<_Tp, _Alloc>::push_back(std::vector<_Tp, _Alloc>::value_type&&) [with _Tp = json_spirit::Value_impl > >; _Alloc = std::allocator > > >; std::vector<_Tp, _Alloc>::value_type = json_spirit::Value_impl > >]’
       push_back(value_type&& __x)
       ^
rpcmining.cpp:525:79: error: conversion from ‘__gnu_cxx::__alloc_traits >::value_type {aka long int}’ to ‘const Value_type {aka const json_spirit::Value_impl > >}’ is ambiguous
         entry.push_back(Pair("fee", pblocktemplate->vTxFees[index_in_template]));
                                                                               ^
rpcmining.cpp:525:79: note: candidates are:
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘__gnu_cxx::__alloc_traits >::value_type {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
json/json_spirit_value.h:439:5: note: initializing argument 2 of ‘json_spirit::Pair_impl::Pair_impl(const String_type&, const Value_type&) [with Config = json_spirit::Config_vector >; json_spirit::Pair_impl::String_type = std::basic_string; json_spirit::Pair_impl::Value_type = json_spirit::Value_impl > >]’
     Pair_impl< Config >::Pair_impl( const String_type& name, const Value_type& value )
     ^
rpcmining.cpp:526:84: error: conversion from ‘__gnu_cxx::__alloc_traits >::value_type {aka long int}’ to ‘const Value_type {aka const json_spirit::Value_impl > >}’ is ambiguous
         entry.push_back(Pair("sigops", pblocktemplate->vTxSigOps[index_in_template]));
                                                                                    ^
rpcmining.cpp:526:84: note: candidates are:
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘__gnu_cxx::__alloc_traits >::value_type {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
json/json_spirit_value.h:439:5: note: initializing argument 2 of ‘json_spirit::Pair_impl::Pair_impl(const String_type&, const Value_type&) [with Config = json_spirit::Config_vector >; json_spirit::Pair_impl::String_type = std::basic_string; json_spirit::Pair_impl::Value_type = json_spirit::Value_impl > >]’
     Pair_impl< Config >::Pair_impl( const String_type& name, const Value_type& value )
     ^
rpcmining.cpp:549:82: error: conversion from ‘int64_t {aka long int}’ to ‘const Value_type {aka const json_spirit::Value_impl > >}’ is ambiguous
     result.push_back(Pair("coinbasevalue", (int64_t)pblock->vtx[0].vout[0].nValue));
                                                                                  ^
rpcmining.cpp:549:82: note: candidates are:
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘int64_t {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
json/json_spirit_value.h:439:5: note: initializing argument 2 of ‘json_spirit::Pair_impl::Pair_impl(const String_type&, const Value_type&) [with Config = json_spirit::Config_vector >; json_spirit::Pair_impl::String_type = std::basic_string; json_spirit::Pair_impl::Value_type = json_spirit::Value_impl > >]’
     Pair_impl< Config >::Pair_impl( const String_type& name, const Value_type& value )
     ^
rpcmining.cpp:551:80: error: conversion from ‘int64_t {aka long int}’ to ‘const Value_type {aka const json_spirit::Value_impl > >}’ is ambiguous
     result.push_back(Pair("mintime", (int64_t)pindexPrev->GetMedianTimePast()+1));
                                                                                ^
rpcmining.cpp:551:78: note: candidates are:
     result.push_back(Pair("mintime", (int64_t)pindexPrev->GetMedianTimePast()+1));
                                                                              ^
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘int64_t {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
json/json_spirit_value.h:439:5: note: initializing argument 2 of ‘json_spirit::Pair_impl::Pair_impl(const String_type&, const Value_type&) [with Config = json_spirit::Config_vector >; json_spirit::Pair_impl::String_type = std::basic_string; json_spirit::Pair_impl::Value_type = json_spirit::Value_impl > >]’
     Pair_impl< Config >::Pair_impl( const String_type& name, const Value_type& value )
     ^
rpcmining.cpp:554:66: error: conversion from ‘int64_t {aka long int}’ to ‘const Value_type {aka const json_spirit::Value_impl > >}’ is ambiguous
     result.push_back(Pair("sigoplimit", (int64_t)MAX_BLOCK_SIGOPS));
                                                                  ^
rpcmining.cpp:554:66: note: candidates are:
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘int64_t {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
json/json_spirit_value.h:439:5: note: initializing argument 2 of ‘json_spirit::Pair_impl::Pair_impl(const String_type&, const Value_type&) [with Config = json_spirit::Config_vector >; json_spirit::Pair_impl::String_type = std::basic_string; json_spirit::Pair_impl::Value_type = json_spirit::Value_impl > >]’
     Pair_impl< Config >::Pair_impl( const String_type& name, const Value_type& value )
     ^
rpcmining.cpp:555:63: error: conversion from ‘int64_t {aka long int}’ to ‘const Value_type {aka const json_spirit::Value_impl > >}’ is ambiguous
     result.push_back(Pair("sizelimit", (int64_t)MAX_BLOCK_SIZE));
                                                               ^
rpcmining.cpp:555:63: note: candidates are:
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘int64_t {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
json/json_spirit_value.h:439:5: note: initializing argument 2 of ‘json_spirit::Pair_impl::Pair_impl(const String_type&, const Value_type&) [with Config = json_spirit::Config_vector >; json_spirit::Pair_impl::String_type = std::basic_string; json_spirit::Pair_impl::Value_type = json_spirit::Value_impl > >]’
     Pair_impl< Config >::Pair_impl( const String_type& name, const Value_type& value )
     ^
rpcmining.cpp:556:60: error: conversion from ‘int64_t {aka long int}’ to ‘const Value_type {aka const json_spirit::Value_impl > >}’ is ambiguous
     result.push_back(Pair("curtime", (int64_t)pblock->nTime));
                                                            ^
rpcmining.cpp:556:60: note: candidates are:
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘int64_t {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
json/json_spirit_value.h:439:5: note: initializing argument 2 of ‘json_spirit::Pair_impl::Pair_impl(const String_type&, const Value_type&) [with Config = json_spirit::Config_vector >; json_spirit::Pair_impl::String_type = std::basic_string; json_spirit::Pair_impl::Value_type = json_spirit::Value_impl > >]’
     Pair_impl< Config >::Pair_impl( const String_type& name, const Value_type& value )
     ^
rpcmining.cpp:558:69: error: conversion from ‘int64_t {aka long int}’ to ‘const Value_type {aka const json_spirit::Value_impl > >}’ is ambiguous
     result.push_back(Pair("height", (int64_t)(pindexPrev->nHeight+1)));
                                                                     ^
rpcmining.cpp:558:69: note: candidates are:
In file included from json/json_spirit_reader_template.h:9:0,
                 from bitcoinrpc.h:16,
                 from rpcmining.cpp:9:
json/json_spirit_value.h:283:5: note: json_spirit::Value_impl::Value_impl(double) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( double value )
     ^
json/json_spirit_value.h:275:5: note: json_spirit::Value_impl::Value_impl(boost::uint64_t) [with Config = json_spirit::Config_vector >; boost::uint64_t = long long unsigned int]
     Value_impl< Config >::Value_impl( boost::uint64_t value )
     ^
json/json_spirit_value.h:267:5: note: json_spirit::Value_impl::Value_impl(boost::int64_t) [with Config = json_spirit::Config_vector >; boost::int64_t = long long int]
     Value_impl< Config >::Value_impl( boost::int64_t value )
     ^
json/json_spirit_value.h:259:5: note: json_spirit::Value_impl::Value_impl(int) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( int value )
     ^
json/json_spirit_value.h:251:5: note: json_spirit::Value_impl::Value_impl(bool) [with Config = json_spirit::Config_vector >]
     Value_impl< Config >::Value_impl( bool value )
     ^
json/json_spirit_value.h:219:5: note: json_spirit::Value_impl::Value_impl(json_spirit::Value_impl::Const_str_ptr) [with Config = json_spirit::Config_vector >; json_spirit::Value_impl::Const_str_ptr = const char*]
     Value_impl< Config >::Value_impl( const Const_str_ptr value )
     ^
json/json_spirit_value.h:219:5: note:   no known conversion for argument 1 from ‘int64_t {aka long int}’ to ‘json_spirit::Value_impl > >::Const_str_ptr {aka const char*}’
json/json_spirit_value.h:439:5: note: initializing argument 2 of ‘json_spirit::Pair_impl::Pair_impl(const String_type&, const Value_type&) [with Config = json_spirit::Config_vector >; json_spirit::Pair_impl::String_type = std::basic_string; json_spirit::Pair_impl::Value_type = json_spirit::Value_impl > >]’
     Pair_impl< Config >::Pair_impl( const String_type& name, const Value_type& value )
     ^
make: *** [obj/rpcmining.o] Error 1

I manage the scrypt multi-pool Prohashing.com, and I would like to add Litecoindark as one of the coins available for payout.  I was ready to do this with LTCD version 1.0.1 but the fork and the inability to compile version 1.1.0 has forced me to delayed the rollout.  Could you resolve these errors so that I can enable LTCD payouts?
legendary
Activity: 1512
Merit: 1041
Hi community
Great time for this money I follows from the beginning
Good jobs at all are hoping that the problem in diff either correct it right

Ps: Please BestPool thank you kindly open a stratum with a diff 1024 for users of its asics Zeus would cool or between 700 and 2048 max

cordially @ soon

New ASIC port is ready @best-pool, port 36156 (1000 Locked Diff)


SEE They LISTEN!!! Wow.... now only to get my toddler to do that! HAHAHA Keep up the good WORK!!!! And keep up to the name BEST pool!

CHEERS!!!

Hi community
Great time for this money I follows from the beginning
Good jobs at all are hoping that the problem in diff either correct it right

Ps: Please BestPool thank you kindly open a stratum with a diff 1024 for users of its asics Zeus would cool or between 700 and 2048 max

cordially @ soon

New ASIC port is ready @best-pool, port 36156 (1000 Locked Diff)

and NICE pointing gridseeds in 5.4.3.....1 <| haha     *<|:^D   <-----clowning around!
sr. member
Activity: 462
Merit: 250
By the way.

I had an idea about a logo but I'm a terrible designer and have got no artistic talent so I can just give an idea for someone to create it :-)
I would like to see taoist Yin Yang based symbol as it reflects this coin very well. Two feathers, one black and one white (or black & red, black & gold etc) which are bend (in banana shape) towards each other to create, together the yin yang circle symbol. Something a little bit similiar to BitcoinDark symbol ;-)
legendary
Activity: 938
Merit: 1000
Hi community
Great time for this money I follows from the beginning
Good jobs at all are hoping that the problem in diff either correct it right

Ps: Please BestPool thank you kindly open a stratum with a diff 1024 for users of its asics Zeus would cool or between 700 and 2048 max

cordially @ soon

New ASIC port is ready @best-pool, port 36156 (1000 Locked Diff)

Will try it right away....Hold
member
Activity: 98
Merit: 10
Litecoindark Reddit Moderator
Big buys on bittrex lol  Grin
member
Activity: 86
Merit: 10
Hi community
Great time for this money I follows from the beginning
Good jobs at all are hoping that the problem in diff either correct it right

Ps: Please BestPool thank you kindly open a stratum with a diff 1024 for users of its asics Zeus would cool or between 700 and 2048 max

cordially @ soon

New ASIC port is ready @best-pool, port 36156 (1000 Locked Diff)
legendary
Activity: 1512
Merit: 1041
Also note: I am now sitting behind a Mac.  OSX wallets soon.

Ah just what I was waiting for to take my load off the exchange. Wink

A man who knows how it's done Welcome kind Sir! and thank YOU for what you have done to the whole cryptocom(munity)!
legendary
Activity: 938
Merit: 1000
511.000 in buy order at Cryptsy and only 263.000 sells
sr. member
Activity: 336
Merit: 250
Twitter: @Steven_McKie
Also note: I am now sitting behind a Mac.  OSX wallets soon.

Ah just what I was waiting for to take my load off the exchange. Wink
legendary
Activity: 938
Merit: 1000
Unfortunatly it is all up to you guys in the states to put in buy walls, when we get to block 16300
Is freaking midninght here in EU, so we wont be awake when al the rush starts.
Hopefully you got enough BTC to keep it up.
Just noticed it will only cost 0,16 BTC right now at Cryptsy to raise the Price from ,2243 to 2395, so lots of people holds.....
member
Activity: 98
Merit: 10
Litecoindark Reddit Moderator
Also note: I am now sitting behind a Mac.  OSX wallets soon.

Awesome news keep up the Great work and thanks for what you do.  Smiley +1
legendary
Activity: 1512
Merit: 1041
The price will rise if people take their coins off the market, making less volume. the scarcer the coin the higher the value... but that's just MO.


9 BLOCKS LEFT!!! according to wallet!!!!

After this I know I will want more for some ltcd if I was to sell any that's for sure .We are doing this for the community  Smiley

To the moon my friend!

AND!!!!!!! CHEERS to the Community and making all of this possible! Thank you Devs for all of your hard-dedicated-work!!! Time to drink a beer and watch the magic unfold!

Keep up the HashPower guys!

+1  Smiley Way to pull together everyone this just shows how strong we are and we are only a few weeks old WOW!

Thank you!

And at the rate of blocks coming i predict we'll see the magic number in about 2-3 hours.
legendary
Activity: 1022
Merit: 1000
Im going to bed now.

105 MH/s will stop in 30 min from me.

And then I have 2x 85 MH/s that stops in 20 hours.

I might buy another 12 hours tomorrow.


See ya later Smiley

And good luck!
member
Activity: 98
Merit: 10
Litecoindark Reddit Moderator
The price will rise if people take their coins off the market, making less volume. the scarcer the coin the higher the value... but that's just MO.


9 BLOCKS LEFT!!! according to wallet!!!!

After this I know I will want more for some ltcd if I was to sell any that's for sure .We are doing this for the community  Smiley

To the moon my friend!

AND!!!!!!! CHEERS to the Community and making all of this possible! Thank you Devs for all of your hard-dedicated-work!!! Time to drink a beer and watch the magic unfold!

Keep up the HashPower guys!

+1  Smiley Way to pull together everyone this just shows how strong we are and we are only a few weeks old WOW!
hero member
Activity: 995
Merit: 500
Soon time for Buy walls at Bittrex and Cryptsy..Time to grab some cheap coins before it raises

+11111
Jump to: