Bitcoin Forum
June 22, 2024, 06:36:57 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: August 10, 2014, 02:46:44 PM
Seems like that worked marvelously perfect! Thanks, but I did put a label and the ip, so it's only connected to one ip, thanks very much.
2  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: August 08, 2014, 11:52:55 AM
Isn't the first one a label and the second one is the actual address?

Code:
static const char *strDNSSeed[][2] = {
    {"label", "192.168.1.1"},
};


I haven't given it a try but I'll definitely let you know! But as it looks like it could be.
3  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: August 07, 2014, 08:44:45 PM
I know this thread is a little dead for the passed month, but I wanted to edit something so i dont have to keep giving out the config files with the ip address of the main coin chain, and i really want to edit this porting inside of the code, i have been looking but can't exactly find anything.


What part of the source is the place where i can add my own ip address, so i can go ahead and have the client automatically sync to the network.

Search for "dnsseed" in net.cpp.


Hi Blazr2 thanks sooo much Cheesy I'll see if that works out. I did this

Code:
static const char *strDNSSeed[][2] = {
    {"flightcoin.ddns.me", "swiftminers.ddns.me"}, <- What I want
    //{"bytesized-vps.com", "dnsseed.bytesized-vps.com"},  <- This can be removed
    // {"xurious.com", "dnsseed.ltc.xurious.com"}, <- This can be removed
};
4  Alternate cryptocurrencies / Altcoin Discussion / Re: Making an alt coin on: August 07, 2014, 07:34:51 PM
Pretty much for Windows, Linux is easier imo, but it's best to build in all platforms.
5  Alternate cryptocurrencies / Altcoin Discussion / Re: Making an alt coin on: August 07, 2014, 07:29:01 PM
It is hard, I created one myself for the networks I partner with, basically it's all trial and error, until I got to a standstill and got help from someone here. It's not an easy process if you only know the basics of c++ more just what exactly is going on to build it then update it as you go.
6  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: August 07, 2014, 07:21:26 PM
Bumpy bump
7  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: August 07, 2014, 04:46:44 PM
I know this thread is a little dead for the passed month, but I wanted to edit something so i dont have to keep giving out the config files with the ip address of the main coin chain, and i really want to edit this porting inside of the code, i have been looking but can't exactly find anything.


What part of the source is the place where i can add my own ip address, so i can go ahead and have the client automatically sync to the network.
8  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 28, 2014, 09:19:49 PM
Sure, 30K of DOGE is good:

D9i7U4za6FpzmScY2XyBLt6aFoQA62oLRr

Got TV? PM me your access code.

Awesome, I took note of your address, I'm not home atm. I'm at work, but I can get my doge wallet fired up and send it
9  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 28, 2014, 08:13:35 PM
I was able to compile your coin using the old Shakezula deps:



It appears your -qt.pro doesn't have the right lines or something to that effect, because I plugged them in directly out of the foocoin (what you're creating here) and voila, it worked!

Here's the Qt: https://www.dropbox.com/s/5itl13zuy70v4au/Flightcoin-Qt.rar

Would be willing to TeamViewer with you and show you how I got it working for a bit of BTC....



Thanks soooo much!!! I would give you 1m of FTC for helping me on it. But my coin is pretty much worthless. But I do have 30k doge if that's worth anything to you. Unfortunately I never got a hold of BTC :/
10  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 28, 2014, 05:55:08 PM
I had installed 4.6 off the website, but haven't compiled it. I thought it was already compiled.
11  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 28, 2014, 04:41:56 PM
I went ahead and built my own deps and I compiled all of them the right way, I used 1_53_0 or is it better to use the new one at 1_55?
12  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 28, 2014, 03:46:22 PM
I'm an old bird but if u wanna rebuild and compile... try using either borland c++ or the compiler in linux...


I haven't heard of borland c++ the compiler in linux I have tried it, but it doesn't want to compile, but I will only need a windows version since everyone in the gaming networks will be using windows.

My coin called Flightcoin is being made for a gaming networks, for some strange reason it is making blocks but no coins are being generated. I have a pool I have created (with MPOS[thanks you theserapher for your awesome work]) mining all the blocks but no coins are being added at all, I don't I have forked it from the smallchange github but that didn't seem to work so well for the coins it self, you guys can review the code here at github https://github.com/flightcoin/flightcoin if anyone is interested in helping out which I would greatly appreciate, this coin is completely private and in no intentions in making any exchanges a long any road, it will be kept private at the gaming networks.

If anyone can help with my situation here, I will think of something to do for you. I don't have money or Bitcoins or any other type of currency to help you but with computer work, but I am sure the majority can do that, please respond here or PM me.

Thank you sooo much in advance for helping me and the gaming networks I support.

The problem is in main.cpp

Code:
if(nHeight < 17280) // no block reward within the first 3 days
        nSubsidy = 0;

Any block under block 17280 will reward no coins.  Grin

What if I put one block? Cause I did get to that part, I should be able to get blocks and coins unconfirmed, right? Thanks I'll edit that part of and update you if it works Cheesy

Hello!

Just remove this part of the code:

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 10000 * COIN; // 10 000 Coins each block


    if(nHeight < 17280) // no block reward within the first 3 days
        nSubsidy = 0;
    if(nHeight > 10519200) // no block reward after 5 years
        nSubsidy = 0;

    return nSubsidy + nFees;
}

and then add this in the place of it

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 10000 * COIN; // You can change the 10,000 coins to however many coins you want rewarded each block

    return nSubsidy + nFees;
}

For building the Flightcoin. I can build it for you on Linux and Windows if you send me the updated code (if you haven't changed it then I will just build the one from Github).


I was able to change it to 1 block lol xP I didn't change it completely, I had updated the code to that on github just now, and is it possible to teach me on windows or whichever platform you build it on?
13  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 28, 2014, 08:05:13 AM
Actually the files are there, just aren't sure what is going on at this point. D:
14  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 28, 2014, 07:50:38 AM
It sounds like you shouldn't be making yet another crappy coin...

He's already specified it's not to be released, so why do you or anyone else care about its qualities?

Creating an altcoin is a great way to learn some coding skills and linux commands if you've never used them before. Cut him a bit of slack for trying something interesting!



To the OP, it looks like your boost libraries were not configured perfectly. If you aren't already, try this guide: https://bitcointalk.org/index.php?topic=149479.0

Follow it TO THE LETTER and you'll have it compiling in no time (although some of the libraries take hours to compile Wink )

You're right, I'm not releasing it to the public, I'm releasing it to a gaming networks as an alternative to get stuff for free in game.

Thanks loads!! I'll rebuild my boost libraries as soon as I get home tonight. Cheesy


I struggled for months on the windows section of the code, and if you can get that working you've already done a lot better than some coin devs


lol about that, I have been working on the windows side of things for about a month already Q.Q I have been struggling as well, and I actually got 99.something % done and a new error just pops up at the very last part that something ld.exe is missing and I got this

Code:
C:\deps\boost/boost/thread/win32/shared_mutex.hpp:53:52: warning: dereferencing
type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
c:\Qt\4.8.4\bin\rcc.exe -name bitcoin src\qt\bitcoin.qrc -o release\qrc_bitcoin.
cpp
g++ -c -pipe -O2 -frtti -fexceptions -mthreads -fdiagnostics-show-option -Wall -
Wextra -Wformat -Wformat-security -Wno-unused-parameter -DUNICODE -DQT_LARGEFILE
_SUPPORT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_IPV6 -D
USE_UPNP=1 -DSTATICLIB -DWIN32 -D_MT -DQT_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CO
RE_LIB -DQT_HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SS
E2 -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"C:\Qt\4.8.4\include\QtCore" -I"C:\Qt\
4.8.4\include\QtGui" -I"C:\Qt\4.8.4\include" -I"src" -I"src\json" -I"src\qt" -I"
C:\deps\boost" -I"C:\deps\db\build_windows" -I"C:\deps\ssl\include" -I"C:\Qt\4.8
.4\include\ActiveQt" -I"build" -I"build" -I"C:\Qt\4.8.4\mkspecs\win32-g++" -o bu
ild\qrc_bitcoin.o release\qrc_bitcoin.cpp
g++ -Wl,-s -mthreads -Wl,-subsystem,windows -o release\flightcoin-qt.exe object_
script.flightcoin-qt.Release  -L"c:\Qt\4.8.4\lib" -lmingwthrd -lmingw32 -lqtmain
 build\bitcoin-qt_res.o -lshlwapi -lssl -lcrypto -ldb_cxx -lws2_32 -lole32 -lole
aut32 -luuid -lgdi32 -lboost_system-mgw46-mt-sd-1_53 -lboost_filesystem-mgw46-mt
-sd-1_53 -lboost_program_options-mgw46-mt-sd-1_53 -lboost_thread-mgw46-mt-sd-1_5
3 -lminiupnpc -liphlpapi -lws2_32 -lshlwapi -lmswsock -LC:/deps/boost/stage/lib
-LC:/deps/db/build_windows -LC:/deps/ssl -lssl -lcrypto -ldb_cxx -lole32 -luuid
-lgdi32 -lboost_system-mgw46-mt-sd-1_53 -lboost_filesystem-mgw46-mt-sd-1_53 -lbo
ost_program_options-mgw46-mt-sd-1_53 -lboost_thread-mgw46-mt-sd-1_53 -lQtGui4 -l
QtCore4
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -ldb_cxx
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lboost_system-mgw46-mt-sd-1_53
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lboost_filesystem-mgw46-mt-sd-1_53
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lboost_program_options-mgw46-mt-sd-1_53
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lboost_thread-mgw46-mt-sd-1_53
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lminiupnpc
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -ldb_cxx
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lboost_system-mgw46-mt-sd-1_53
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lboost_filesystem-mgw46-mt-sd-1_53
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lboost_program_options-mgw46-mt-sd-1_53
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
d -lboost_thread-mgw46-mt-sd-1_53
collect2.exe: error: ld returned 1 exit status
makefile.release:253: recipe for target 'release\flightcoin-qt.exe' failed
mingw32-make: *** [release\flightcoin-qt.exe] Error 1


I seem to have gotten super close but its just that its missing, I can't find it either so I am actually going to find it somewhere where Google leads me.lol for helping me I will help you out which I did go thru trial and error with about 2 files that needed to be switched.
15  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 28, 2014, 02:06:39 AM
It sounds like you shouldn't be making yet another crappy coin...

He's already specified it's not to be released, so why do you or anyone else care about its qualities?

Creating an altcoin is a great way to learn some coding skills and linux commands if you've never used them before. Cut him a bit of slack for trying something interesting!



To the OP, it looks like your boost libraries were not configured perfectly. If you aren't already, try this guide: https://bitcointalk.org/index.php?topic=149479.0

Follow it TO THE LETTER and you'll have it compiling in no time (although some of the libraries take hours to compile Wink )

You're right, I'm not releasing it to the public, I'm releasing it to a gaming networks as an alternative to get stuff for free in game.

Thanks loads!! I'll rebuild my boost libraries as soon as I get home tonight. Cheesy
16  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 27, 2014, 09:12:40 PM
I'm also having a problem building irc.o on Windows when I build pretty much 99% but 2 files didn't compile.

Code:
 C:\deps\boost/boost/thread/win32/shared_mutex.hpp:52:99: warning: dereferencing
type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
C:\deps\boost/boost/thread/win32/shared_mutex.hpp:53:52: warning: dereferencing
type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
             return *reinterpret_cast<T const*>(&res);
                                                    ^
C:\deps\boost/boost/thread/win32/shared_mutex.hpp:53:52: warning: dereferencing
type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
In file included from C:\deps\boost/boost/system/system_error.hpp:14:0,
                 from C:\deps\boost/boost/thread/exceptions.hpp:22,
                 from C:\deps\boost/boost/thread/win32/thread_primitives.hpp:16,

                 from C:\deps\boost/boost/thread/win32/thread_data.hpp:11,
                 from C:\deps\boost/boost/thread/thread.hpp:15,
                 from C:\deps\boost/boost/thread.hpp:13,
                 from src\util.h:22,
                 from src\addrman.h:9,
                 from src\net.h:21,
                 from src\irc.cpp:8:
C:\deps\boost/boost/system/error_code.hpp: At global scope:
C:\deps\boost/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/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/boost/system/error_code.hpp:216:36: warning: 'boost::system::nativ
e_ecat' defined but not used [-Wunused-variable]
17  Alternate cryptocurrencies / Altcoin Discussion / Re: My coin in need of help on: June 27, 2014, 05:12:02 PM
My coin called Flightcoin is being made for a gaming networks, for some strange reason it is making blocks but no coins are being generated. I have a pool I have created (with MPOS[thanks you theserapher for your awesome work]) mining all the blocks but no coins are being added at all, I don't I have forked it from the smallchange github but that didn't seem to work so well for the coins it self, you guys can review the code here at github https://github.com/flightcoin/flightcoin if anyone is interested in helping out which I would greatly appreciate, this coin is completely private and in no intentions in making any exchanges a long any road, it will be kept private at the gaming networks.

If anyone can help with my situation here, I will think of something to do for you. I don't have money or Bitcoins or any other type of currency to help you but with computer work, but I am sure the majority can do that, please respond here or PM me.

Thank you sooo much in advance for helping me and the gaming networks I support.

The problem is in main.cpp

Code:
if(nHeight < 17280) // no block reward within the first 3 days
        nSubsidy = 0;

Any block under block 17280 will reward no coins.  Grin

What if I put one block? Cause I did get to that part, I should be able to get blocks and coins unconfirmed, right? Thanks I'll edit that part of and update you if it works Cheesy
18  Alternate cryptocurrencies / Altcoin Discussion / My coin in need of help on: June 27, 2014, 06:13:34 AM
My coin called Flightcoin is being made for a gaming networks, for some strange reason it is making blocks but no coins are being generated. I have a pool I have created (with MPOS[thanks you theserapher for your awesome work]) mining all the blocks but no coins are being added at all, I don't I have forked it from the smallchange github but that didn't seem to work so well for the coins it self, you guys can review the code here at github https://github.com/flightcoin/flightcoin if anyone is interested in helping out which I would greatly appreciate, this coin is completely private and in no intentions in making any exchanges a long any road, it will be kept private at the gaming networks.

If anyone can help with my situation here, I will think of something to do for you. I don't have money or Bitcoins or any other type of currency to help you but with computer work, but I am sure the majority can do that, please respond here or PM me.

Thank you sooo much in advance for helping me and the gaming networks I support.
19  Alternate cryptocurrencies / Altcoin Discussion / I can mine blocks but no coins are made on: June 16, 2014, 09:41:24 PM
I have been mining my own coin I have created for this networks I'm with and I have been generating blocks but no coins are coming out, I have set it to 1 confirmation but that still doesn't work

Is there something I am doing wrong on making my coin?

My coin is on git https://github.com/flightcoin/flightcoin
Not sure what exactly is going on with it but I hope I can get some help.
20  Alternate cryptocurrencies / Mining (Altcoins) / Re: want to help! on: June 02, 2014, 09:05:36 AM
Code:
Basic Windows build instructions, using MinGW:
Install MinGW and the MSYS Developer Tool Kit (http://www.mingw.org/)
* Make sure you have mstcpip.h in MinGW\include
If using MinGW-w64, install pthreads-w64
Install libcurl devel (http://curl.haxx.se/download.html)
* Make sure you have libcurl.m4 in MinGW\share\aclocal
* Make sure you have curl-config in MinGW\bin
In the MSYS shell, run:
./autogen.sh # only needed if building from git repo
LIBCURL="-lcurldll" ./configure CFLAGS="-O3"
make


Literally says it there, try to compile with MinGW and you'll be good to go.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!