Bitcoin Forum
May 03, 2024, 11:31:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Gambling / Re: # MultiDice.me # Multi Coin Dice Game on: August 19, 2014, 06:34:58 PM
Just got my CaptCoins! I vouch for this site and it is legitimate. Thank you so much!
2  Economy / Gambling / Re: # MultiDice.me # Multi Coin Dice Game on: August 19, 2014, 05:13:56 PM
Everybody is having issues with CaptCoin... I am also. If you can't get it onto the site could you at least refund us our coins? I lost 27.3 CaptCoins. Thank you in advance.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] | [EQC] | EQUALICOIN | CHARITABLE HUMAN RIGHTS CRYPTOGRAPHIC CURRENCY | on: July 20, 2014, 12:39:56 AM
The Equalicoin developers are extremely sorry to not provide the information that Equalicoin is a Scrypt coin.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] | [EQC] | EQUALICOIN | CHARITABLE HUMAN RIGHTS CRYPTOGRAPHIC CURRENCY | on: July 20, 2014, 12:31:32 AM
The developers of Equalicoin are not extremely tech savvy, just philanthropic. We posted a bounty for the wallets because we could not get them by ourselves. We are trying to do something for a good cause, not profit. But, if you would like to profit, I'd start mining because this coin will be listed on an exchange soon!
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] | [EQC] | EQUALICOIN | CHARITABLE HUMAN RIGHTS CRYPTOGRAPHIC CURRENCY | on: July 20, 2014, 12:23:07 AM
Soon to be added to AllCrypt.com so I would start mining!
6  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN] | [EQC] | EQUALICOIN | CHARITABLE HUMAN RIGHTS CRYPTOGRAPHIC CURRENCY | on: July 20, 2014, 12:08:07 AM
“The rights of every man are diminished when the rights of one man are threatened.” -John F Kennedy

ONLY A .33% PREMINE


INTRODUCTION
Equalicoin is a new cryptographic currency with the goal of drawing attention to
and raising awareness of human rights, while raising money for charitable donations to human rights foundations.
We would also love to build a community
focusing around the fair and equal treatment of all people.

"To deny people their human rights is to challenge their very humanity." - Nelson Mandela

SPECIFICATIONS
Scrypt alt-coin
42,000,000 total coins
25 coin block reward
7 minute block time
PoW
Nodes: 192.168.1.71

"Human rights are women's rights, and women's rights are human rights.” -Hillary Clinton


CHARITY
A bounty of 1500 Equalicoins is set for someone to create
a basic online gambling site which utilizes equalicoin
10% of proceeds from this site will go to UNICEF

BOUNTIES
P2P pool: 1000 Equalicoin
Gambling site utilizing EqualiCoin: 1500
Faucet: 500
Windows Wallet: 1000
OSX Wallet: 750

WALLETS
Compile from:
Github: https://github.com/camcoin/Equalicoin

EXCHANGES

AllCrypt.com

SOCIAL

Join our subreddit community! https://www.reddit.com/r/Equalicoin
Follow us on twitter! https://twitter.com/Equalicoin

7  Alternate cryptocurrencies / Altcoin Discussion / Trouble Compiling Wallets on: June 20, 2014, 09:33:01 PM
Hello to all of the dedicated C++ programmers out there. I am really new to C++, but I decided to use a comprehensive guide to make an alternate cryptocurrency. I finished the new altcoin, but am having a lot of trouble with building the Mac OSX wallet. I always get a compile error when it gets to the macdockiconhandler.mm file. I've perused the internet for a solution, but I only see people with the same problem and no solution. The code for the file with the compile error is here:

#include "macdockiconhandler.h"

#include <QtGui/QMenu>
#include <QtGui/QWidget>

extern void qt_mac_set_dock_menu(QMenu*);

#undef slots
#include <Cocoa/Cocoa.h>

@interface DockIconClickEventHandler : NSObject
{
MacDockIconHandler* dockIconHandler;
}

@end

@implementation DockIconClickEventHandler

- (id)initWithDockIconHandler:(MacDockIconHandler *)aDockIconHandler
{
self = [super init];
if (self) {
dockIconHandler = aDockIconHandler;

[[NSAppleEventManager sharedAppleEventManager]
setEventHandler:self
andSelector:@selector(handleDockClickEvent:withReplyEvent:)
forEventClass:kCoreEventClass
andEventID:kAEReopenApplication];
}
return self;
}

- (void)handleDockClickEvent:(NSAppleEventDescriptor*)event withReplyEvent:(NSAppleEventDescriptor*)replyEvent
{
Q_UNUSED(event)
Q_UNUSED(replyEvent)

if (dockIconHandler)
dockIconHandler->handleDockIconClickEvent();
}

@end

MacDockIconHandler::MacDockIconHandler() : QObject()
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
this->m_dockIconClickEventHandler = [[DockIconClickEventHandler alloc] initWithDockIconHandler:this];

this->m_dummyWidget = new QWidget();
this->m_dockMenu = new QMenu(this->m_dummyWidget);
qt_mac_set_dock_menu(this->m_dockMenu);
[pool release];
}

MacDockIconHandler::~MacDockIconHandler()
{
[this->m_dockIconClickEventHandler release];
delete this->m_dummyWidget;
}

QMenu *MacDockIconHandler::dockMenu()
{
return this->m_dockMenu;
}

void MacDockIconHandler::setIcon(const QIcon &icon)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSImage *image;
if (icon.isNull())
image = [[NSImage imageNamed:@"NSApplicationIcon"] retain];
else {
QSize size = icon.actualSize(QSize(128, 128));
QPixmap pixmap = icon.pixmap(size);
CGImageRef cgImage = pixmap.toMacCGImageRef();
image = [[NSImage alloc] initWithCGImage:cgImage size:NSZeroSize];
CFRelease(cgImage);
}

[NSApp setApplicationIconImage:image];
[image release];
[pool release];
}

MacDockIconHandler *MacDockIconHandler::instance()
{
static MacDockIconHandler *s_instance = NULL;
if (!s_instance)
s_instance = new MacDockIconHandler();
return s_instance;
}

void MacDockIconHandler::handleDockIconClickEvent()
{
emit this->dockIconClicked();
}




After I try to make the wallet, I get these compile errors:

src/qt/macdockiconhandler.mm:50:39: error: assigning to 'objc_object *' from
incompatible type 'DockIconClickEventHandler *'
...= [[DockIconClickEventHandler alloc] initWithDockIconHandler:this];
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/qt/macdockiconhandler.mm:60:6: warning: receiver type 'objc_object *' is not
'id' or interface pointer, consider casting it to 'id' [-Wreceiver-expr]
[this->m_dockIconClickEventHandler release];
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If anybody could help, that would be amazing.
8  Alternate cryptocurrencies / Altcoin Discussion / Re: Trouble creating Altcoin clone on: April 10, 2014, 04:23:54 PM
I have an Ubuntu virtual machine. Would you recommend creating it on there?
9  Alternate cryptocurrencies / Altcoin Discussion / Trouble creating Altcoin clone on: April 09, 2014, 05:51:09 PM
Hey everybody, recently I got extremely interested in the realm of crypto-currencies. My interest has really developed and now I'm trying to make my own crypto-currency for a school project. Yes, I am 14, and am still in school. So far, I've used this guide: https://andarazoroflove.org/how-to-create-alt-coin-scrypt-clones-for-fun-and-profit-bitcoin-litecoin-secrets-exposed/ and I get to the part where I make the first build and I get a bunch of compile errors. It looks like this:
Zipper:src jacob.zipper$ make -f makefile.osx USE_UPNP=-
/bin/sh ../share/genbuild.sh obj/build.h
llvm-g++ -c -g -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter  -DMAC_OSX -DMSG_NOSIGNAL=0 -DBOOST_SPIRIT_THREADSAFE -DUSE_IPV6 -DUSE_UPNP=- -DHAVE_BUILD_INFO -I"/Users/jacob.zipper/WackyBucks/src" -I"/Users/jacob.zipper/WackyBucks/src"/obj -I"/opt/local/include" -I"/opt/local/include/db48" -MMD -MF obj/version.d -o obj/version.o version.cpp
llvm-g++ -c -g -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter  -DMAC_OSX -DMSG_NOSIGNAL=0 -DBOOST_SPIRIT_THREADSAFE -DUSE_IPV6 -DUSE_UPNP=- -DHAVE_BUILD_INFO -I"/Users/jacob.zipper/WackyBucks/src" -I"/Users/jacob.zipper/WackyBucks/src"/obj -I"/opt/local/include" -I"/opt/local/include/db48" -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from checkpoints.cpp:11:
In file included from /Users/jacob.zipper/WackyBucks/src/main.h:9:
In file included from /Users/jacob.zipper/WackyBucks/src/bignum.h:13:
In file included from /Users/jacob.zipper/WackyBucks/src/util.h:22:
In file included from /opt/local/include/boost/thread.hpp:17:
In file included from /opt/local/include/boost/thread/once.hpp:20:
In file included from /opt/local/include/boost/thread/pthread/once_atomic.hpp:20:
In file included from /opt/local/include/boost/atomic.hpp:12:
In file included from /opt/local/include/boost/atomic/atomic.hpp:17:
In file included from /opt/local/include/boost/atomic/detail/platform.hpp:22:
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:961:64: error: no matching
      constructor for initialization of 'storage_type' (aka
      'boost::atomics::detail::storage128_type')
    explicit base_atomic(value_type const& v) BOOST_NOEXCEPT : v_(0)
                                                               ^  ~
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:932:28: note: candidate
      constructor (the implicit copy constructor) not viable: no known
      conversion from 'int' to 'const boost::atomics::detail::storage128_type'
      for 1st argument
struct BOOST_ALIGNMENT(16) storage128_type
                           ^
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:932:28: note: candidate
      constructor (the implicit default constructor) not viable: requires 0
      arguments, but 1 was provided
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:968:22: error: no viable
      conversion from 'int' to 'storage_type' (aka
      'boost::atomics::detail::storage128_type')
        storage_type tmp = 0;
                     ^     ~
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:932:28: note: candidate
      constructor (the implicit copy constructor) not viable: no known
      conversion from 'int' to 'const boost::atomics::detail::storage128_type &'
      for 1st argument
struct BOOST_ALIGNMENT(16) storage128_type
                           ^
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:983:22: error: no viable
      conversion from 'int' to 'storage_type' (aka
      'boost::atomics::detail::storage128_type')
        storage_type tmp = 0;
                     ^     ~
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:932:28: note: candidate
      constructor (the implicit copy constructor) not viable: no known
      conversion from 'int' to 'const boost::atomics::detail::storage128_type &'
      for 1st argument
struct BOOST_ALIGNMENT(16) storage128_type
                           ^
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:997:22: error: no viable
      conversion from 'int' to 'storage_type' (aka
      'boost::atomics::detail::storage128_type')
        storage_type expected_s = 0, desired_s = 0;
                     ^            ~
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:932:28: note: candidate
      constructor (the implicit copy constructor) not viable: no known
      conversion from 'int' to 'const boost::atomics::detail::storage128_type &'
      for 1st argument
struct BOOST_ALIGNMENT(16) storage128_type
                           ^
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:997:38: error: no viable
      conversion from 'int' to 'storage_type' (aka
      'boost::atomics::detail::storage128_type')
        storage_type expected_s = 0, desired_s = 0;
                                     ^           ~
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:932:28: note: candidate
      constructor (the implicit copy constructor) not viable: no known
      conversion from 'int' to 'const boost::atomics::detail::storage128_type &'
      for 1st argument
struct BOOST_ALIGNMENT(16) storage128_type
                           ^
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:1013:22: error: no viable
      conversion from 'int' to 'storage_type' (aka
      'boost::atomics::detail::storage128_type')
        storage_type expected_s = 0, desired_s = 0;
                     ^            ~
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:932:28: note: candidate
      constructor (the implicit copy constructor) not viable: no known
      conversion from 'int' to 'const boost::atomics::detail::storage128_type &'
      for 1st argument
struct BOOST_ALIGNMENT(16) storage128_type
                           ^
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:1013:38: error: no viable
      conversion from 'int' to 'storage_type' (aka
      'boost::atomics::detail::storage128_type')
        storage_type expected_s = 0, desired_s = 0;
                                     ^           ~
/opt/local/include/boost/atomic/detail/gcc-atomic.hpp:932:28: note: candidate
      constructor (the implicit copy constructor) not viable: no known
      conversion from 'int' to 'const boost::atomics::detail::storage128_type &'
      for 1st argument
struct BOOST_ALIGNMENT(16) storage128_type
                           ^
In file included from checkpoints.cpp:11:
In file included from /Users/jacob.zipper/WackyBucks/src/main.h:9:
In file included from /Users/jacob.zipper/WackyBucks/src/bignum.h:13:
In file included from /Users/jacob.zipper/WackyBucks/src/util.h:31:
In file included from /Users/jacob.zipper/WackyBucks/src/netbase.h:11:
/Users/jacob.zipper/WackyBucks/src/serialize.h:824:10: error: class member
      cannot be redeclared
    void insert(iterator it, std::vector<char>::const_iterator first, st...
         ^
/Users/jacob.zipper/WackyBucks/src/serialize.h:811:10: note: previous
      declaration is here
    void insert(iterator it, const_iterator first, const_iterator last)
         ^
/Users/jacob.zipper/WackyBucks/src/serialize.h:824:10: error: redefinition of
      'insert'
    void insert(iterator it, std::vector<char>::const_iterator first, st...
         ^
/Users/jacob.zipper/WackyBucks/src/serialize.h:811:10: note: previous definition
      is here
    void insert(iterator it, const_iterator first, const_iterator last)
         ^
In file included from checkpoints.cpp:11:
/Users/jacob.zipper/WackyBucks/src/main.h:43:46: warning: overflow in
      expression; result is 2426047410323587072 with type 'long long'
      [-Winteger-overflow]
static const int64 MAX_MONEY = 1500000000000 * COIN; // maximum number of coins
                                             ^
1 warning and 9 errors generated.
make: *** [obj/checkpoints.o] Error 1

If I could have some help it would be great. Just saying I used Foocoin's source code. If you help it would be so great. I'm doing this project as a community service project for my school and I really want it to work out. Thank you so much.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!