Author

Topic: Feathercoin [FTC] - page 200. (Read 460641 times)

hero member
Activity: 636
Merit: 500
April 16, 2013, 06:49:02 PM
#59
getmininginfo in console dont work with me?

@markm thanks, will see how to implement code?
hero member
Activity: 631
Merit: 501
April 16, 2013, 06:47:52 PM
#58
Even if these coins end up worthless, it has been fun just to try to mine them. My first few blocks were rejected though. Finally getting some coins now.

I imagine the early miners of Bitcoin, Litecoin, P2PCoin, Terracoin all probably thought the same thing!   Cool
hero member
Activity: 860
Merit: 1004
BTC OG and designer of the BitcoinMarket.com logo
April 16, 2013, 06:45:50 PM
#57
The build problem is in util.h and can be fixed by

sed -i -e 's/pthread2/pthread/g' util.h

For some reason someone hacked it to use pthread2 instead of the normal pthread used by litecoin.

-MarkM-
Thanks for that.
full member
Activity: 168
Merit: 100
April 16, 2013, 06:44:08 PM
#56
Even if these coins end up worthless, it has been fun just to try to mine them. My first few blocks were rejected though. Finally getting some coins now.

Agreed

I haven't tried to solo mine (or use anything but guiminer) before so setting that up was a learning experience Tongue
newbie
Activity: 20
Merit: 0
April 16, 2013, 06:39:41 PM
#55
Even if these coins end up worthless, it has been fun just to try to mine them. My first few blocks were rejected though. Finally getting some coins now.
hero member
Activity: 602
Merit: 500
April 16, 2013, 06:35:42 PM
#54
Someone want to make a pool?

Someone help me fill out this part for p2pool and it should be possible to get a pool started

Quote
   feathercoin=math.Object(
        PARENT=networks.nets['feathercoin'],
        SHARE_PERIOD=10, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=12, # blocks
        IDENTIFIER='e037d5b8c6923410'.decode('hex'),
        PREFIX='7208c1a53ef629b0'.decode('hex'),
        P2P_PORT=9338,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=True,
        WORKER_PORT=9327,
        BOOTSTRAP_ADDRS='f'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

And

Quote
   feathercoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=9333,
        ADDRESS_VERSION=48,
        RPC_PORT=9332,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'feathercoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 50*100000000 >> (height + 1)//840000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=150, # s
        SYMBOL='LTC',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Feathercoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Feathercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.feathercoin'), 'feathercoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://explorer.litecoin.net/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://explorer.litecoin.net/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),

Code can be found here
https://github.com/chrda/p2pool
full member
Activity: 168
Merit: 100
April 16, 2013, 06:33:47 PM
#53
So does anybody here actually have coins in his wallet yet?  Huh

10K coins so far. Difficulty seems to be going up quite a bit I'm only finding blocks every 2-3 minutes or so now on 1.3MH/s

That's like >50% network speed.

Not sure it is even close to >50%

Getmininginfo in console shows current hashrate is "networkhashps" : 1892145

20 minutes ago it was "networkhashps" : 632298

Cheesy
Seems everyone wants in for these early coins lol
hero member
Activity: 756
Merit: 500
April 16, 2013, 06:30:20 PM
#52
So does anybody here actually have coins in his wallet yet?  Huh

10K coins so far. Difficulty seems to be going up quite a bit I'm only finding blocks every 2-3 minutes or so now on 1.3MH/s

That's like >50% network speed.
hero member
Activity: 756
Merit: 500
April 16, 2013, 06:28:28 PM
#51
Someone want to make a pool?
legendary
Activity: 2940
Merit: 1090
April 16, 2013, 06:27:27 PM
#50
The build problem is in util.h and can be fixed by

sed -i -e 's/pthread2/pthread/g' util.h

For some reason someone hacked it to use pthread2 instead of the normal pthread used by litecoin.

-MarkM-
hero member
Activity: 840
Merit: 1000
April 16, 2013, 06:21:52 PM
#49
So does anybody here actually have coins in his wallet yet?  Huh

10K coins so far. Difficulty seems to be going up quite a bit I'm only finding blocks every 2-3 minutes or so now on 1.3MH/s
sr. member
Activity: 476
Merit: 250
April 16, 2013, 06:19:51 PM
#48
All I'm getting is orphans, I found 1 legit block so far out of 30+
member
Activity: 98
Merit: 10
April 16, 2013, 06:18:29 PM
#47
So does anybody here actually have coins in his wallet yet?  Huh
newbie
Activity: 41
Merit: 0
April 16, 2013, 06:15:38 PM
#46
Why not Tritecoin ?  Cheesy

Anyway, congrats on your first altcoin, dude.
Darn it! Why do people keep stealing names from my coin ideas? This is the second time today! :S
hero member
Activity: 636
Merit: 500
April 16, 2013, 06:13:15 PM
#45
so for 400kh it will be how much coin in lets say 1hr? or every 200 coins in how much minutes?
hero member
Activity: 631
Merit: 501
April 16, 2013, 06:09:31 PM
#44
how much is the diff now?

Client reports  0.00024414
3,488 Blocks
hero member
Activity: 636
Merit: 500
April 16, 2013, 06:07:02 PM
#43
how much is the diff now?
legendary
Activity: 2940
Merit: 1090
April 16, 2013, 06:06:44 PM
#42
The source code does not build:

Code:
/bin/sh ../share/genbuild.sh obj/build.h
fatal: Not a git repository (or any of the parent directories): .git
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I../../deps/include -I/usr/src/bitcoin/feathercoin-0.6.3/src -I/usr/src/bitcoin/feathercoin-0.6.3/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2  -MMD -o obj/version.o version.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I../../deps/include -I/usr/src/bitcoin/feathercoin-0.6.3/src -I/usr/src/bitcoin/feathercoin-0.6.3/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2  -MMD -o obj/checkpoints.o checkpoints.cpp
In file included from bignum.h:14:0,
                 from main.h:9,
                 from checkpoints.cpp:13:
util.h:587:8: error: ‘pthread2_t’ does not name a type
make: *** [obj/checkpoints.o] Error 1

It seems to be trying to create a build.h file from a repository that does not exist.

-MarkM-
sr. member
Activity: 476
Merit: 250
April 16, 2013, 06:05:49 PM
#41
19 transactions so far and only 1 shows up in my client
hero member
Activity: 860
Merit: 1004
BTC OG and designer of the BitcoinMarket.com logo
April 16, 2013, 06:00:06 PM
#40
Whats the problem here please Huh
Code:
error: ‘pthread2_t’ does not name a type
make: *** [obj/checkpoints.o] Error 1
Jump to: