Bitcoin Forum
May 27, 2024, 10:53:17 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 »
161  Alternate cryptocurrencies / Mining (Altcoins) / Re: Digital Ocean Monero Pool Mining Guide! CPU only! [MRO] Cryptonight Algo! on: May 19, 2014, 07:21:00 PM
any stats on how profitable different CPUs are?
162  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CHA] Chancecoin, a coin for betting in a decentralized casino on: May 18, 2014, 02:50:23 AM
Transaction timed out.please try again...

Have you come across this problem? Huh

 Embarrassed Embarrassed Embarrassed Embarrassed

Make sure btc-qt (probably doesn't change things on second thought since we've already input our private keys, so just try again Tongue) is open, and try again.
163  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CHA] Chancecoin, a coin for betting in a decentralized casino on: May 18, 2014, 02:24:11 AM


- You then bet 20,000 CHA and lose

Your wallet balance goes down to 0 CHA and the total number of CHA goes down to 500,000


So if everyone goes all in or 99% of their holdings @ a very small probability, (0.0001)... if no one wins, all these coins disappear and basically everyone wins by deflation?
164  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CHA] Chancecoin, a coin for betting in a decentralized casino on: May 18, 2014, 02:21:08 AM
CHA on poloniex hmmm...


The betting is still a bit chunky, it's kind of slow, has there been a wallet update or can we expect faster betting speeds or?

165  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CureCoin is launched 5/10/2014 on: May 15, 2014, 11:33:41 PM
agreed good to see we have that mac wallet already.. the website is currently under works and should be up and running  very soon (within a day or two id imagine its really close to done).  The press releases are expected to come soon I have done some spreading of the word through fox news, statesman journal and a few others here locally for me.  Whatever you all can do to spread the word to the news companies and newspapers do it! Show up on there forums/websites youd be surprised how many times they run a story from there forums.  More people sending messages to fox12 would help quite a bit too im sure.  We should be showing up in the news anytime now at least here in the pacific NW.  

http://www.kptv.com/category/210054/contact-fox-12

go there and let them know the truths about curecoin and its current accomplishments.  We will appear in the news if there is enough people showing interest.  do the same thing at any news sites you can.  We need this to hit people outside the bitcoin community.  We need to attract new people to the cryptocurrency that will help us  save lives! help us get there Smiley.  

I am not a developer nor affiliated directly with any of the curecoin team (asside from recently meeting them and occasional conversations).  I am simply trying to help spread the word, you all should too Smiley.  If there was ever a coin for the community to step in and help out this is it.  We are growing extremely fast.  Help spread the word and keep us in this uptrend!

I suggested last night to the "I f#$&ing love science" facebook page that they should do a post about it. I figure it's the best spot to get people's attention...millions of likes, and the people seeing it are people that have computers and internet and, well, they f#$&ing love science....and who doesn't like earning curecoins?

This would be awesome
166  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CHA] Chancecoin, a coin for betting in a decentralized casino on: May 15, 2014, 05:20:46 AM
So i succeeded in placing a bet: 0.1 @ 5% => 19.8 % payout which i HIT with 0.49 Cheesy

However i can't use the distributed exchange, it gives me tx timed out.

And i cannot play anymore either.
167  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CHA] Chancecoin, a coin for betting in a decentralized casino on: May 14, 2014, 04:31:51 PM
So last i tried i wasn't able to gamble/play,

i suppose i need to unlock my wallet with BTC-qt or bitcoind in order to play or trade?

Can this feature be included in the actual chancecoin wallet..

Or a bounty be offered to add it..
168  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: May 12, 2014, 11:57:09 PM
Code:
C:/mingw32/i686-w64-mingw32/include/pthread.h:196:19: error: 'pthread_t' has a p
revious declaration as 'typedef uintptr_t pthread_t'
 typedef uintptr_t pthread_t;
                   ^
 
   src/util.h:578:12: error: invalid conversion from 'HANDLE {aka void*}' to 'pthre
ad_t {aka unsigned int}' [-fpermissive]
     return hthread;
            ^

src/util.h:555:16: error: conflicting declaration 'typedef void* pthread_t'
 typedef HANDLE pthread_t;


See: https://github.com/laanwj/bitcoin/commit/61d85071405b99c3734606eed31ea8f615c0c77a

that fixed the first problem, then i had it complaining about :
Code:
c:\deps\boost_1_53_0/boost/system/error_code.hpp:214:36: warning: 'boost::system
::posix_category' defined but not used [-Wunused-variable]
     static const error_category &  posix_category = generic_category();
                                    ^
c:\deps\boost_1_53_0/boost/system/error_code.hpp:215:36: warning: 'boost::system
::errno_ecat' defined but not used [-Wunused-variable]
     static const error_category &  errno_ecat     = generic_category();
                                    ^
c:\deps\boost_1_53_0/boost/system/error_code.hpp:216:36: warning: 'boost::system
::native_ecat' defined but not used [-Wunused-variable]
     static const error_category &  native_ecat    = system_category();


(i copied this from other thread, i'm on boost version 1.55)

which i fixed using this: -Wno-unused-variables
and now this:
Code:
src\main.cpp: In function 'void GenerateBitcoins(bool, CWallet*)':
src\main.cpp:3824:58: error: cannot convert 'void (*)(void*)' to 'LPSECURITY_ATT
RIBUTES {aka _SECURITY_ATTRIBUTES*}' for argument '1' to 'void* CreateThread(LPS
ECURITY_ATTRIBUTES, SIZE_T, LPTHREAD_START_ROUTINE, LPVOID, DWORD, LPDWORD)'
             if (!CreateThread(ThreadBitcoinMiner, pwallet))
                                                          ^
Makefile.Release:951: recipe for target 'build/main.o' failed
mingw32-make: *** [build/main.o] Error 1

i'm at a loss here.


edit:

Code:
             ^
src\init.cpp: In function 'void Shutdown(void*)':
src\init.cpp:81:39: error: cannot convert 'void (*)(void*)' to 'LPSECURITY_ATTRI
BUTES {aka _SECURITY_ATTRIBUTES*}' for argument '1' to 'void* CreateThread(LPSEC
URITY_ATTRIBUTES, SIZE_T, LPTHREAD_START_ROUTINE, LPVOID, DWORD, LPDWORD)'
         CreateThread(ExitTimeout, NULL);
                                       ^
src\init.cpp: In function 'bool AppInit2()':
src\init.cpp:767:38: error: cannot convert 'void (*)(void*)' to 'LPSECURITY_ATTR
IBUTES {aka _SECURITY_ATTRIBUTES*}' for argument '1' to 'void* CreateThread(LPSE
CURITY_ATTRIBUTES, SIZE_T, LPTHREAD_START_ROUTINE, LPVOID, DWORD, LPDWORD)'
     if (!CreateThread(StartNode, NULL))
                                      ^
src\init.cpp:771:43: error: cannot convert 'void (*)(void*)' to 'LPSECURITY_ATTR
IBUTES {aka _SECURITY_ATTRIBUTES*}' for argument '1' to 'void* CreateThread(LPSE
CURITY_ATTRIBUTES, SIZE_T, LPTHREAD_START_ROUTINE, LPVOID, DWORD, LPDWORD)'
         CreateThread(ThreadRPCServer, NULL);
                                           ^
Makefile.Release:984: recipe for target 'build/init.o' failed
mingw32-make: *** [build/init.o] Error 1


edit: a simple mistake eluded me! your fix was correct thanks
169  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: May 12, 2014, 10:38:53 PM
the no system include is already in my DEFINES, i dont know why it does include it anyway.

Code:
c:\deps\xxxxx>mingw32-make -f Makefile.Release
g++ -c -pipe -msse2 -O2 -frtti -fexceptions -mthreads -fdiagnostics-show-option
-Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector
 -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT
_THREADSAFE -DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN[color=red] -D__NO_SYSTEM_IN
CLUDES[/color] -DUSE_IPV6=1 -DWIN32 -D_MT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_
HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_THRE
AD_SUPPORT -DQT_NEEDS_QMAIN -I"..\..\Qt\4.8.4\include\QtCore" -I"..\..\Qt\4.8.4\
include\QtGui" -I"..\..\Qt\4.8.4\include" -I"src" -I"src\json" -I"src\qt" -I"..\
boost_1_55_0" -I"..\db-4.8.30.NC\build_unix" -I"..\openssl-1.0.1g\include" -I"..
\..\Qt\4.8.4\include\ActiveQt" -I"build" -I"build" -I"..\..\Qt\4.8.4\mkspecs\def
ault" -o build\bitcoin.o src\qt\bitcoin.cpp
In file included from ..\boost_1_55_0/boost/bind/bind.hpp:29:0,
                 from ..\boost_1_55_0/boost/bind.hpp:22,
                 from ..\boost_1_55_0/boost/thread/detail/thread.hpp:29,
                 from ..\boost_1_55_0/boost/thread/thread_only.hpp:22,
                 from ..\boost_1_55_0/boost/thread/thread.hpp:12,
                 from ..\boost_1_55_0/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:

i tried removing it from there, doesnt work, commenting out the conflict in the code, and that gives me type casting errors.
I'm going to start over and reinstall  otherwise i might try vs
170  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: May 12, 2014, 09:52:02 PM
Quote
The first error I see in that long text capture is in regard loop.  To that end, see message # 1 in this forum:
https://bitcointalk.org/index.php?topic=149479.msg1587734#msg1587734.  Towards the end of that message you will find provisos on the deficiencies of the Qt make system (?) vis a vis C style macros.  You have to fix them one at a time.  So fix that and recompile-make-whatever and chase the next error.

Or come over to the dark side and build using MSVS Roll Eyes

Ron


whoops, this is actually the error i'm getting:

Code:
c:\deps\xxxxx>mingw32-make -f Makefile.Release
g++ -c -pipe -msse2 -O2 -frtti -fexceptions -mthreads -fdiagnostics-show-option
-Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector
 -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT
_THREADSAFE -DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN -D__NO_SYSTEM_IN
CLUDES -DUSE_IPV6=1 -DWIN32 -D_MT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_
HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_THRE
AD_SUPPORT -DQT_NEEDS_QMAIN -I"..\..\Qt\4.8.4\include\QtCore" -I"..\..\Qt\4.8.4\
include\QtGui" -I"..\..\Qt\4.8.4\include" -I"src" -I"src\json" -I"src\qt" -I"..\
boost_1_55_0" -I"..\db-4.8.30.NC\build_unix" -I"..\openssl-1.0.1g\include" -I"..
\..\Qt\4.8.4\include\ActiveQt" -I"build" -I"build" -I"..\..\Qt\4.8.4\mkspecs\def
ault" -o build\bitcoin.o src\qt\bitcoin.cpp
In file included from ..\boost_1_55_0/boost/bind/bind.hpp:29:0,
                 from ..\boost_1_55_0/boost/bind.hpp:22,
                 from ..\boost_1_55_0/boost/thread/detail/thread.hpp:29,
                 from ..\boost_1_55_0/boost/thread/thread_only.hpp:22,
                 from ..\boost_1_55_0/boost/thread/thread.hpp:12,
                 from ..\boost_1_55_0/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\boost_1_55_0/boost/bind/arg.hpp: In constructor 'boost::arg<I>::arg(const T&)
':
..\boost_1_55_0/boost/bind/arg.hpp:37:22: warning: typedef 'T_must_be_placeholde
r' locally defined but not used [-Wunused-local-typedefs]
         typedef char T_must_be_placeholder[ I == is_placeholder<T>::value? 1: -
1 ];
                      ^
In file included from ..\boost_1_55_0/boost/tuple/tuple.hpp:33:0,
                 from ..\boost_1_55_0/boost/thread/detail/async_func.hpp:37,
                 from ..\boost_1_55_0/boost/thread/future.hpp:22,
                 from ..\boost_1_55_0/boost/thread.hpp:24,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\boost_1_55_0/boost/tuple/detail/tuple_basic.hpp: In function 'typename boost:
:tuples::access_traits<typename boost::tuples::element<N, boost::tuples::cons<HT
, TT> >::type>::const_type boost::tuples::get(const boost::tuples::cons<HT, TT>&
)':
..\boost_1_55_0/boost/tuple/detail/tuple_basic.hpp:228:45: warning: typedef 'con
s_element' locally defined but not used [-Wunused-local-typedefs]
   typedef BOOST_DEDUCED_TYPENAME impl::type cons_element;
                                             ^
In file included from src/bignum.h:13:0,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
src/util.h: At global scope:
src/util.h:555:16: error: conflicting declaration 'typedef void* pthread_t'
 typedef HANDLE pthread_t;
                ^
In file included from C:/mingw32/i686-w64-mingw32/include/c++/i686-w64-mingw32/b
its/gthr-default.h:35:0,
                 from C:/mingw32/i686-w64-mingw32/include/c++/i686-w64-mingw32/b
its/gthr.h:148,
                 from C:/mingw32/i686-w64-mingw32/include/c++/ext/atomicity.h:35
,
                 from C:/mingw32/i686-w64-mingw32/include/c++/bits/basic_string.
h:39,
                 from C:/mingw32/i686-w64-mingw32/include/c++/string:52,
                 from ..\..\Qt\4.8.4\include/QtCore/../../src/corelib/tools/qstr
ing.h:54,
                 from ..\..\Qt\4.8.4\include/QtCore/qstring.h:1,
                 from ..\..\Qt\4.8.4\include/QtCore/../../src/corelib/kernel/qob
ject.h:48,
                 from ..\..\Qt\4.8.4\include/QtCore/qobject.h:1,
                 from ..\..\Qt\4.8.4\include/QtGui/../../src/gui/kernel/qwidget.
h:46,
                 from ..\..\Qt\4.8.4\include/QtGui/qwidget.h:1,
                 from ..\..\Qt\4.8.4\include\QtGui/../../src/gui/widgets/qmainwi
ndow.h:45,
                 from ..\..\Qt\4.8.4\include\QtGui/qmainwindow.h:1,
                 from ..\..\Qt\4.8.4\include\QtGui/QMainWindow:1,
                 from src\qt\bitcoingui.h:4,
                 from src\qt\bitcoin.cpp:4:
C:/mingw32/i686-w64-mingw32/include/pthread.h:196:19: error: 'pthread_t' has a p
revious declaration as 'typedef uintptr_t pthread_t'
 typedef uintptr_t pthread_t;
                   ^
In file included from src/bignum.h:13:0,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
src/util.h: In function 'pthread_t CreateThread(void (*)(void*), void*, bool)':
src/util.h:578:12: error: invalid conversion from 'HANDLE {aka void*}' to 'pthre
ad_t {aka unsigned int}' [-fpermissive]
     return hthread;
            ^
In file included from ..\boost_1_55_0/boost/interprocess/errors.hpp:37:0,
                 from ..\boost_1_55_0/boost/interprocess/exceptions.hpp:20,
                 from ..\boost_1_55_0/boost/interprocess/shared_memory_object.hp
p:17,
                 from ..\boost_1_55_0/boost/interprocess/ipc/message_queue.hpp:1
7,
                 from src\qt\bitcoin.cpp:23:
..\boost_1_55_0/boost/interprocess/detail/win32_api.hpp: At global scope:
..\boost_1_55_0/boost/interprocess/detail/win32_api.hpp:903:116: warning: declar
ation of 'void* boost::interprocess::winapi::CreateMutexA(boost::interprocess::w
inapi::interprocess_security_attributes*, int, const char*)' with C language lin
kage [enabled by default]
 extern "C" __declspec(dllimport) void * __stdcall CreateMutexA(interprocess_sec
urity_attributes*, int, const char *);

                                    ^
In file included from ..\boost_1_55_0/boost/thread/win32/thread_data.hpp:11:0,
                 from ..\boost_1_55_0/boost/thread/thread_only.hpp:15,
                 from ..\boost_1_55_0/boost/thread/thread.hpp:12,
                 from ..\boost_1_55_0/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\boost_1_55_0/boost/thread/win32/thread_primitives.hpp:144:55: warning: confli
cts with previous declaration 'void* boost::detail::win32::CreateMutexA(boost::d
etail::win32::_SECURITY_ATTRIBUTES*, int, const char*)' [enabled by default]
                 __declspec(dllimport) void* __stdcall CreateMutexA(_SECURITY_AT
TRIBUTES*,int,char const*);
                                                       ^
In file included from ..\boost_1_55_0/boost/interprocess/errors.hpp:37:0,
                 from ..\boost_1_55_0/boost/interprocess/exceptions.hpp:20,
                 from ..\boost_1_55_0/boost/interprocess/shared_memory_object.hp
p:17,
                 from ..\boost_1_55_0/boost/interprocess/ipc/message_queue.hpp:1
7,
                 from src\qt\bitcoin.cpp:23:
..\boost_1_55_0/boost/interprocess/detail/win32_api.hpp:908:127: warning: declar
ation of 'void* boost::interprocess::winapi::CreateSemaphoreA(boost::interproces
s::winapi::interprocess_security_attributes*, long int, long int, const char*)'
with C language linkage [enabled by default]
 extern "C" __declspec(dllimport) void * __stdcall CreateSemaphoreA(interprocess
_security_attributes*, long, long, const char *);

                                               ^
In file included from ..\boost_1_55_0/boost/thread/win32/thread_data.hpp:11:0,
                 from ..\boost_1_55_0/boost/thread/thread_only.hpp:15,
                 from ..\boost_1_55_0/boost/thread/thread.hpp:12,
                 from ..\boost_1_55_0/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\boost_1_55_0/boost/thread/win32/thread_primitives.hpp:145:55: warning: confli
cts with previous declaration 'void* boost::detail::win32::CreateSemaphoreA(boos
t::detail::win32::_SECURITY_ATTRIBUTES*, long int, long int, const char*)' [enab
led by default]
                 __declspec(dllimport) void* __stdcall CreateSemaphoreA(_SECURIT
Y_ATTRIBUTES*,long,long,char const*);
                                                       ^
In file included from ..\boost_1_55_0/boost/interprocess/detail/windows_intermod
ule_singleton.hpp:26:0,
                 from ..\boost_1_55_0/boost/interprocess/detail/tmp_dir_helpers.
hpp:22,
                 from ..\boost_1_55_0/boost/interprocess/shared_memory_object.hp
p:22,
                 from ..\boost_1_55_0/boost/interprocess/ipc/message_queue.hpp:1
7,
                 from src\qt\bitcoin.cpp:23:
..\boost_1_55_0/boost/interprocess/detail/intermodule_singleton_common.hpp: In i
nstantiation of 'static ThreadSafeGlobalMap& boost::interprocess::ipcdetail::int
ermodule_singleton_common<ThreadSafeGlobalMap>::get_map() [with ThreadSafeGlobal
Map = boost::interprocess::ipcdetail::intermodule_singleton_helpers::windows_sem
aphore_based_map]':
..\boost_1_55_0/boost/interprocess/detail/intermodule_singleton_common.hpp:126:4
8:   required from 'static void boost::interprocess::ipcdetail::intermodule_sing
leton_common<ThreadSafeGlobalMap>::initialize_singleton_logic(void*&, volatile u
int32_t&, void* (*)(ThreadSafeGlobalMap&), bool) [with ThreadSafeGlobalMap = boo
st::interprocess::ipcdetail::intermodule_singleton_helpers::windows_semaphore_ba
sed_map; uint32_t = unsigned int; boost::interprocess::ipcdetail::intermodule_si
ngleton_common<ThreadSafeGlobalMap>::singleton_constructor_t = void*(boost::inte
rprocess::ipcdetail::intermodule_singleton_helpers::windows_semaphore_based_map&
)]'
..\boost_1_55_0/boost/interprocess/detail/intermodule_singleton_common.hpp:337:1
03:   required from 'static void boost::interprocess::ipcdetail::intermodule_sin
gleton_impl<C, LazyInit, Phoenix, ThreadSafeGlobalMap>::atentry_work() [with C =
 boost::interprocess::ipcdetail::windows_bootstamp; bool LazyInit = true; bool P
hoenix = true; ThreadSafeGlobalMap = boost::interprocess::ipcdetail::intermodule
_singleton_helpers::windows_semaphore_based_map]'
..\boost_1_55_0/boost/interprocess/detail/intermodule_singleton_common.hpp:326:2
6:   required from 'static C& boost::interprocess::ipcdetail::intermodule_single
ton_impl<C, LazyInit, Phoenix, ThreadSafeGlobalMap>::get() [with C = boost::inte
rprocess::ipcdetail::windows_bootstamp; bool LazyInit = true; bool Phoenix = tru
e; ThreadSafeGlobalMap = boost::interprocess::ipcdetail::intermodule_singleton_h
elpers::windows_semaphore_based_map]'
..\boost_1_55_0/boost/interprocess/detail/tmp_dir_helpers.hpp:45:97:   required
from here
..\boost_1_55_0/boost/interprocess/detail/intermodule_singleton_common.hpp:205:9
3: warning: dereferencing type-punned pointer will break strict-aliasing rules [
-Wstrict-aliasing]
       return *static_cast<ThreadSafeGlobalMap *>(static_cast<void *>(&mem_holde
r.map_mem[0]));

             ^
In file included from ..\boost_1_55_0/boost/system/system_error.hpp:14:0,
                 from ..\boost_1_55_0/boost/thread/exceptions.hpp:22,
                 from ..\boost_1_55_0/boost/thread/win32/thread_primitives.hpp:1
6,
                 from ..\boost_1_55_0/boost/thread/win32/thread_data.hpp:11,
                 from ..\boost_1_55_0/boost/thread/thread_only.hpp:15,
                 from ..\boost_1_55_0/boost/thread/thread.hpp:12,
                 from ..\boost_1_55_0/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\boost_1_55_0/boost/system/error_code.hpp:222:36: warning: 'boost::system::pos
ix_category' defined but not used [-Wunused-variable]
     static const error_category &  posix_category = generic_category();
                                    ^
..\boost_1_55_0/boost/system/error_code.hpp:223:36: warning: 'boost::system::err
no_ecat' defined but not used [-Wunused-variable]
     static const error_category &  errno_ecat     = generic_category();
                                    ^
..\boost_1_55_0/boost/system/error_code.hpp:224:36: warning: 'boost::system::nat
ive_ecat' defined but not used [-Wunused-variable]
     static const error_category &  native_ecat    = system_category();
                                    ^
Makefile.Release:685: recipe for target 'build/bitcoin.o' failed
mingw32-make: *** [build/bitcoin.o] Error 1

c:\deps\xxxr>


these are the errors i see:

Code:
C:/mingw32/i686-w64-mingw32/include/pthread.h:196:19: error: 'pthread_t' has a p
revious declaration as 'typedef uintptr_t pthread_t'
 typedef uintptr_t pthread_t;
                   ^
   
   src/util.h:578:12: error: invalid conversion from 'HANDLE {aka void*}' to 'pthre
ad_t {aka unsigned int}' [-fpermissive]
     return hthread;
            ^

src/util.h:555:16: error: conflicting declaration 'typedef void* pthread_t'
 typedef HANDLE pthread_t;

maybe i need to install pthread someway? what package is that included in
171  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CureCoin is launched 5/10/2014 on: May 12, 2014, 09:24:02 PM
how do the payouts from folding work?

i've been folding for 3 days i just received my payout i think, but someone i know whose been folding as long received a payout yesterday and a massive one again today?
172  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CHA] Chancecoin, a coin for betting in a decentralized casino on: May 12, 2014, 08:49:52 PM
is there a new wallet since last week?

I couldnt bet back then.

Chancecoin 2.0 was released on the 10th.

What's chancecoin trading for right now? any centralized exchanges?
173  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CHA] Chancecoin, a coin for betting in a decentralized casino on: May 12, 2014, 08:40:37 PM
is there a new wallet since last week?

I couldnt bet back then.
174  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: May 12, 2014, 06:34:24 PM
hi,

i have this problem when doing mingw32-make Makefile.release on the modified small change clone:

Code:
c:\Users\XXX>mingw32-make -f Make
file.Release
g++ -c -pipe -fno-keep-inline-dllexport -O2 -frtti -fdiagnostics-show-option -Wa
ll -Wextra -Wformat -Wformat-security -Wno-unused-parameter -fexceptions -mthrea
ds -DUNICODE -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_IPV
6 -DUSE_UPNP=1 -DSTATICLIB -DWIN32 -D_MT -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI
_LIB -DQT_CORE_LIB -DQT_NEEDS_QMAIN -I"src" -I"src\json" -I"src\qt" -I"..\..\..\
..\..\deps" -I"..\..\..\..\..\deps\boost" -I"..\..\..\..\..\deps\db-4.8.30.NC\bu
ild_unix" -I"..\..\..\..\..\deps\openssl-1.0.1e\include" -I"..\..\..\..\..\Qt\5.
2.1\qtbase-opensource-src-5.2.1\include" -I"..\..\..\..\..\Qt\5.2.1\qtbase-opens
ource-src-5.2.1\include\QtWidgets" -I"..\..\..\..\..\Qt\5.2.1\qtbase-opensource-
src-5.2.1\include\QtGui" -I"..\..\..\..\..\Qt\5.2.1\qtbase-opensource-src-5.2.1\
include\QtCore" -I"build" -I"build" -I"..\..\..\..\..\Qt\5.2.1\qtbase-opensource
-src-5.2.1\mkspecs\win32-g++" -o build\bitcoin.o src\qt\bitcoin.cpp
In file included from ..\..\..\..\..\deps\boost/boost/bind/bind.hpp:29:0,
                 from ..\..\..\..\..\deps\boost/boost/bind.hpp:22,
                 from ..\..\..\..\..\deps\boost/boost/thread/detail/thread.hpp:2
9,
                 from ..\..\..\..\..\deps\boost/boost/thread/thread_only.hpp:22,

                 from ..\..\..\..\..\deps\boost/boost/thread/thread.hpp:12,
                 from ..\..\..\..\..\deps\boost/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\..\..\..\..\deps\boost/boost/bind/arg.hpp: In constructor 'boost::arg<I>::arg
(const T&)':
..\..\..\..\..\deps\boost/boost/bind/arg.hpp:37:22: warning: typedef 'T_must_be_
placeholder' locally defined but not used [-Wunused-local-typedefs]
         typedef char T_must_be_placeholder[ I == is_placeholder<T>::value? 1: -
1 ];
                      ^
In file included from ..\..\..\..\..\deps\boost/boost/tuple/tuple.hpp:33:0,
                 from ..\..\..\..\..\deps\boost/boost/thread/detail/async_func.h
pp:37,
                 from ..\..\..\..\..\deps\boost/boost/thread/future.hpp:22,
                 from ..\..\..\..\..\deps\boost/boost/thread.hpp:24,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\..\..\..\..\deps\boost/boost/tuple/detail/tuple_basic.hpp: In function 'typen
ame boost::tuples::access_traits<typename boost::tuples::element<N, boost::tuple
s::cons<HT, TT> >::type>::const_type boost::tuples::get(const boost::tuples::con
s<HT, TT>&)':
..\..\..\..\..\deps\boost/boost/tuple/detail/tuple_basic.hpp:228:45: warning: ty
pedef 'cons_element' locally defined but not used [-Wunused-local-typedefs]
   typedef BOOST_DEDUCED_TYPENAME impl::type cons_element;
                                             ^
In file included from src/bignum.h:13:0,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\..\..\..\..\Qt\5.2.1\qtbase-opensource-src-5.2.1\include/QtCore/../../src/cor
elib/kernel/qeventloop.h: At global scope:
src/util.h:39:29: error: expected ',' or '...' before 'for'
 #define loop                for (;;)
                             ^
..\..\..\..\..\Qt\5.2.1\qtbase-opensource-src-5.2.1\include/QtCore/../../src/cor
elib/kernel/qeventloop.h:96:43: note: in expansion of macro 'loop'
     explicit QEventLoopLocker(QEventLoop *loop);
                                           ^
src/util.h:39:34: error: expected ')' before ';' token
 #define loop                for (;;)
                                  ^
..\..\..\..\..\Qt\5.2.1\qtbase-opensource-src-5.2.1\include/QtCore/../../src/cor
elib/kernel/qeventloop.h:96:43: note: in expansion of macro 'loop'
     explicit QEventLoopLocker(QEventLoop *loop);
                                           ^
src/util.h:39:36: error: expected unqualified-id before ')' token
 #define loop                for (;;)
                                    ^
..\..\..\..\..\Qt\5.2.1\qtbase-opensource-src-5.2.1\include/QtCore/../../src/cor
elib/kernel/qeventloop.h:96:43: note: in expansion of macro 'loop'
     explicit QEventLoopLocker(QEventLoop *loop);
                                           ^
In file included from ..\..\..\..\..\deps\boost/boost/interprocess/errors.hpp:37
:0,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/exceptions.hp
p:20,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/shared_memory
_object.hpp:17,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/ipc/message_q
ueue.hpp:17,
                 from src\qt\bitcoin.cpp:23:
..\..\..\..\..\deps\boost/boost/interprocess/detail/win32_api.hpp:903:116: warni
ng: declaration of 'void* boost::interprocess::winapi::CreateMutexA(boost::inter
process::winapi::interprocess_security_attributes*, int, const char*)' with C la
nguage linkage [enabled by default]
 extern "C" __declspec(dllimport) void * __stdcall CreateMutexA(interprocess_sec
urity_attributes*, int, const char *);

                                    ^
In file included from ..\..\..\..\..\deps\boost/boost/thread/win32/thread_data.h
pp:11:0,
                 from ..\..\..\..\..\deps\boost/boost/thread/thread_only.hpp:15,

                 from ..\..\..\..\..\deps\boost/boost/thread/thread.hpp:12,
                 from ..\..\..\..\..\deps\boost/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\..\..\..\..\deps\boost/boost/thread/win32/thread_primitives.hpp:144:55: warni
ng: conflicts with previous declaration 'void* boost::detail::win32::CreateMutex
A(boost::detail::win32::_SECURITY_ATTRIBUTES*, int, const char*)' [enabled by de
fault]
                 __declspec(dllimport) void* __stdcall CreateMutexA(_SECURITY_AT
TRIBUTES*,int,char const*);
                                                       ^
In file included from ..\..\..\..\..\deps\boost/boost/interprocess/errors.hpp:37
:0,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/exceptions.hp
p:20,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/shared_memory
_object.hpp:17,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/ipc/message_q
ueue.hpp:17,
                 from src\qt\bitcoin.cpp:23:
..\..\..\..\..\deps\boost/boost/interprocess/detail/win32_api.hpp:908:127: warni
ng: declaration of 'void* boost::interprocess::winapi::CreateSemaphoreA(boost::i
nterprocess::winapi::interprocess_security_attributes*, long int, long int, cons
t char*)' with C language linkage [enabled by default]
 extern "C" __declspec(dllimport) void * __stdcall CreateSemaphoreA(interprocess
_security_attributes*, long, long, const char *);

                                               ^
In file included from ..\..\..\..\..\deps\boost/boost/thread/win32/thread_data.h
pp:11:0,
                 from ..\..\..\..\..\deps\boost/boost/thread/thread_only.hpp:15,

                 from ..\..\..\..\..\deps\boost/boost/thread/thread.hpp:12,
                 from ..\..\..\..\..\deps\boost/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\..\..\..\..\deps\boost/boost/thread/win32/thread_primitives.hpp:145:55: warni
ng: conflicts with previous declaration 'void* boost::detail::win32::CreateSemap
horeA(boost::detail::win32::_SECURITY_ATTRIBUTES*, long int, long int, const cha
r*)' [enabled by default]
                 __declspec(dllimport) void* __stdcall CreateSemaphoreA(_SECURIT
Y_ATTRIBUTES*,long,long,char const*);
                                                       ^
src\qt\bitcoin.cpp: In function 'int qMain(int, char**)':
src\qt\bitcoin.cpp:150:5: error: 'setCodecForTr' is not a member of 'QTextCodec'

     QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
     ^
src\qt\bitcoin.cpp:151:5: error: 'setCodecForCStrings' is not a member of 'QText
Codec'
     QTextCodec::setCodecForCStrings(QTextCodec::codecForTr());
     ^
src\qt\bitcoin.cpp:151:37: error: 'codecForTr' is not a member of 'QTextCodec'
     QTextCodec::setCodecForCStrings(QTextCodec::codecForTr());
                                     ^
In file included from ..\..\..\..\..\deps\boost/boost/thread/shared_mutex.hpp:18
:0,
                 from ..\..\..\..\..\deps\boost/boost/thread/detail/thread_group
.hpp:9,
                 from ..\..\..\..\..\deps\boost/boost/thread/thread.hpp:13,
                 from ..\..\..\..\..\deps\boost/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\..\..\..\..\deps\boost/boost/thread/win32/shared_mutex.hpp: In instantiation
of 'T boost::shared_mutex::interlocked_compare_exchange(T*, T, T) [with T = boos
t::shared_mutex::state_data]':
..\..\..\..\..\deps\boost/boost/thread/win32/shared_mutex.hpp:124:103:   require
d from here
..\..\..\..\..\deps\boost/boost/thread/win32/shared_mutex.hpp:52:99: warning: de
referencing type-punned pointer will break strict-aliasing rules [-Wstrict-alias
ing]
                                                               *reinterpret_cast
<long*>(&comparand));

                   ^
..\..\..\..\..\deps\boost/boost/thread/win32/shared_mutex.hpp:52:99: warning: de
referencing type-punned pointer will break strict-aliasing rules [-Wstrict-alias
ing]
..\..\..\..\..\deps\boost/boost/thread/win32/shared_mutex.hpp:53:52: warning: de
referencing type-punned pointer will break strict-aliasing rules [-Wstrict-alias
ing]
             return *reinterpret_cast<T const*>(&res);
                                                    ^
..\..\..\..\..\deps\boost/boost/thread/win32/shared_mutex.hpp:53:52: warning: de
referencing type-punned pointer will break strict-aliasing rules [-Wstrict-alias
ing]
In file included from ..\..\..\..\..\deps\boost/boost/interprocess/detail/window
s_intermodule_singleton.hpp:26:0,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/detail/tmp_di
r_helpers.hpp:22,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/shared_memory
_object.hpp:22,
                 from ..\..\..\..\..\deps\boost/boost/interprocess/ipc/message_q
ueue.hpp:17,
                 from src\qt\bitcoin.cpp:23:
..\..\..\..\..\deps\boost/boost/interprocess/detail/intermodule_singleton_common
.hpp: In instantiation of 'static ThreadSafeGlobalMap& boost::interprocess::ipcd
etail::intermodule_singleton_common<ThreadSafeGlobalMap>::get_map() [with Thread
SafeGlobalMap = boost::interprocess::ipcdetail::intermodule_singleton_helpers::w
indows_semaphore_based_map]':
..\..\..\..\..\deps\boost/boost/interprocess/detail/intermodule_singleton_common
.hpp:126:48:   required from 'static void boost::interprocess::ipcdetail::interm
odule_singleton_common<ThreadSafeGlobalMap>::initialize_singleton_logic(void*&,
volatile uint32_t&, void* (*)(ThreadSafeGlobalMap&), bool) [with ThreadSafeGloba
lMap = boost::interprocess::ipcdetail::intermodule_singleton_helpers::windows_se
maphore_based_map; uint32_t = unsigned int; boost::interprocess::ipcdetail::inte
rmodule_singleton_common<ThreadSafeGlobalMap>::singleton_constructor_t = void*(b
oost::interprocess::ipcdetail::intermodule_singleton_helpers::windows_semaphore_
based_map&)]'
..\..\..\..\..\deps\boost/boost/interprocess/detail/intermodule_singleton_common
.hpp:337:103:   required from 'static void boost::interprocess::ipcdetail::inter
module_singleton_impl<C, LazyInit, Phoenix, ThreadSafeGlobalMap>::atentry_work()
 [with C = boost::interprocess::ipcdetail::windows_bootstamp; bool LazyInit = tr
ue; bool Phoenix = true; ThreadSafeGlobalMap = boost::interprocess::ipcdetail::i
ntermodule_singleton_helpers::windows_semaphore_based_map]'
..\..\..\..\..\deps\boost/boost/interprocess/detail/intermodule_singleton_common
.hpp:326:26:   required from 'static C& boost::interprocess::ipcdetail::intermod
ule_singleton_impl<C, LazyInit, Phoenix, ThreadSafeGlobalMap>::get() [with C = b
oost::interprocess::ipcdetail::windows_bootstamp; bool LazyInit = true; bool Pho
enix = true; ThreadSafeGlobalMap = boost::interprocess::ipcdetail::intermodule_s
ingleton_helpers::windows_semaphore_based_map]'
..\..\..\..\..\deps\boost/boost/interprocess/detail/tmp_dir_helpers.hpp:45:97:
 required from here
..\..\..\..\..\deps\boost/boost/interprocess/detail/intermodule_singleton_common
.hpp:205:93: warning: dereferencing type-punned pointer will break strict-aliasi
ng rules [-Wstrict-aliasing]
       return *static_cast<ThreadSafeGlobalMap *>(static_cast<void *>(&mem_holde
r.map_mem[0]));

             ^
In file included from ..\..\..\..\..\deps\boost/boost/system/system_error.hpp:14
:0,
                 from ..\..\..\..\..\deps\boost/boost/thread/exceptions.hpp:22,
                 from ..\..\..\..\..\deps\boost/boost/thread/win32/thread_primit
ives.hpp:16,
                 from ..\..\..\..\..\deps\boost/boost/thread/win32/thread_data.h
pp:11,
                 from ..\..\..\..\..\deps\boost/boost/thread/thread_only.hpp:15,

                 from ..\..\..\..\..\deps\boost/boost/thread/thread.hpp:12,
                 from ..\..\..\..\..\deps\boost/boost/thread.hpp:13,
                 from src/util.h:22,
                 from src/bignum.h:13,
                 from src/main.h:9,
                 from src/wallet.h:9,
                 from src/init.h:9,
                 from src\qt\bitcoin.cpp:11:
..\..\..\..\..\deps\boost/boost/system/error_code.hpp: At global scope:
..\..\..\..\..\deps\boost/boost/system/error_code.hpp:222:36: warning: 'boost::s
ystem::posix_category' defined but not used [-Wunused-variable]
     static const error_category &  posix_category = generic_category();
                                    ^
..\..\..\..\..\deps\boost/boost/system/error_code.hpp:223:36: warning: 'boost::s
ystem::errno_ecat' defined but not used [-Wunused-variable]
     static const error_category &  errno_ecat     = generic_category();
                                    ^
..\..\..\..\..\deps\boost/boost/system/error_code.hpp:224:36: warning: 'boost::s
ystem::native_ecat' defined but not used [-Wunused-variable]
     static const error_category &  native_ecat    = system_category();
                                    ^
Makefile.Release:10542: recipe for target 'build/bitcoin.o' failed
mingw32-make: *** [build/bitcoin.o] Error 1

c:\Users\XXX>


I noticed someone else had it earlier in the thread but no solution was mentioned, has anyone had this and solved it?
175  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CureCoin is launched 5/10/2014 on: May 12, 2014, 05:38:50 PM
What's the strategy to promote this coin ?
Clearly if you have articles explaining that buying curecoin will cause the price to rise and lead more people to folding, and that folding as well is good... this should be good.

Also more exchanges!

Maybe the stanford team can mention it ?
176  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CureCoin is launched 5/10/2014 on: May 12, 2014, 03:20:47 PM
By the way, have you solicited other exchanges to list your coin?

OR when do you expect to do that?
177  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CureCoin is launched 5/10/2014 on: May 12, 2014, 03:19:48 PM
Nice job cygnus,

Folding to the moon.

Help me out with my payments from the folding pool, i have not received them yet.
178  Economy / Computer hardware / Re: Avalon authorized e-shop ehash.com online! NOW:Miner@1.3USD/G,Chips@0.73USD/G on: May 12, 2014, 03:18:13 PM
Do you accept escrow? Or have any other proof of successful shipments to customers?

I'd like to order a few Avalon3 modules.

Hi,

We are the only Avalon official authorized online-shop. Here is the news form Avalon website:

http://avalon-asics.com/new-avalon-online-shop-ehash-com/

In addition, all miner units in our shop is made by Avalon itself. We are not selling any 3rd-party clones.

ehash.com

But do you accept escrow? Or have official avalon members vouch for you here...
179  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CureCoin is launched 5/10/2014 on: May 12, 2014, 07:18:16 AM
Ive been folding for 2 days and i have not received my cryptobullion pay out, whats going on!!??
180  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CURE] Protein Folding EC2 Setup Guide: 300k PPD per Server! on: May 12, 2014, 12:02:37 AM
this is pointless now, it could damage the whole folding operation, i thought the point was to submit more WU?

With this as people compete for EC2 instances, they'll keep killing each others... and no one will profit. I'd advise everyone to not use this as it could do more harm than good.

This can be avoided by not using spot, and using regular instances. Prices are higher but risk of instance being killed goes away. Either way, this will likely not be profitable in any form.

I'll stick to GPU, this is a waste of money,
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!