Bitcoin Forum
April 19, 2024, 08:53:42 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 »  All
  Print  
Author Topic: .  (Read 39394 times)
crackfoo
Legendary
*
Offline Offline

Activity: 3444
Merit: 1126



View Profile WWW
February 10, 2014, 08:03:28 PM
 #101

Hi,

Attempting to set up a node, so I can add this to CryptX, but your source won't compile for me.

Building LevelDB ...
make[1]: Entering directory `/root/Stories/src/leveldb'
make[1]: *** No rule to make target `libleveldb.a'.  Stop.
make[1]: Leaving directory `/root/Stories/src/leveldb'
make: *** [leveldb/libleveldb.a] Error 2

Copy the leveldb/*.a from another coin...

Yes, but this may hinder your adoption.

how did you build yours?

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
1713560022
Hero Member
*
Offline Offline

Posts: 1713560022

View Profile Personal Message (Offline)

Ignore
1713560022
Reply with quote  #2

1713560022
Report to moderator
1713560022
Hero Member
*
Offline Offline

Posts: 1713560022

View Profile Personal Message (Offline)

Ignore
1713560022
Reply with quote  #2

1713560022
Report to moderator
1713560022
Hero Member
*
Offline Offline

Posts: 1713560022

View Profile Personal Message (Offline)

Ignore
1713560022
Reply with quote  #2

1713560022
Report to moderator
"Governments are good at cutting off the heads of a centrally controlled networks like Napster, but pure P2P networks like Gnutella and Tor seem to be holding their own." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713560022
Hero Member
*
Offline Offline

Posts: 1713560022

View Profile Personal Message (Offline)

Ignore
1713560022
Reply with quote  #2

1713560022
Report to moderator
1713560022
Hero Member
*
Offline Offline

Posts: 1713560022

View Profile Personal Message (Offline)

Ignore
1713560022
Reply with quote  #2

1713560022
Report to moderator
1713560022
Hero Member
*
Offline Offline

Posts: 1713560022

View Profile Personal Message (Offline)

Ignore
1713560022
Reply with quote  #2

1713560022
Report to moderator
shaze1664
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
February 10, 2014, 09:35:48 PM
 #102

No power to mine so I setup a STY block explorer  : http://stories.altstrade.cc/

Donation and Bounty address : 15PhuSP7hZCV96foN6L2SV2y4U8aVE4WRm

Enjoy. PM me if you have questions

Shaze
Snard
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
February 10, 2014, 10:05:58 PM
 #103

The code for this coin is a mess. It uses the current dir as your data dir.  Had to fix that.

Now not syncing. Anyone have nodes?
shaze1664
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
February 10, 2014, 10:07:58 PM
 #104

Add this on your config file :
addnode=54.194.99.126
addnode=193.87.209.46
truerthan
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 10, 2014, 10:15:41 PM
 #105

Thanks for the person who recommended this in my subreddit.

I'll add this to https://CryptX.io tonight.

Brilliant!  Grin

Fantastic to see you followed through and STY is now on https://cryptx.io/  Smiley
deeppurple72
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
February 11, 2014, 02:21:04 AM
 #106

Hi,

Attempting to set up a node, so I can add this to CryptX, but your source won't compile for me.

Building LevelDB ...
make[1]: Entering directory `/root/Stories/src/leveldb'
make[1]: *** No rule to make target `libleveldb.a'.  Stop.
make[1]: Leaving directory `/root/Stories/src/leveldb'
make: *** [leveldb/libleveldb.a] Error 2

Copy the leveldb/*.a from another coin...

Yes, but this may hinder your adoption.

how did you build yours?


I simply copied JUST the leveldb/makefile from another coin's src code (marscoin)

it's NOT the .a ( static libs ) --- the leveldb just needs the missing makefile for it!

That's the trick!  the make[1]: *** No rule to make target `libleveldb.a'.  Stop. ------ means there's no makefile
deeppurple72
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
February 11, 2014, 02:24:42 AM
 #107

here's the contents of the leveldb/Makefile , if you just want to copy & paste into text editor
then save as 'Makefile' in that leveldb folder.  then try the 'make bitcoind' from the src folder.

# Copyright (c) 2011 The LevelDB Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. See the AUTHORS file for names of contributors.

#-----------------------------------------------
# Uncomment exactly one of the lines labelled (A), (B), and (C) below
# to switch between compilation modes.

OPT ?= -O2 -DNDEBUG       # (A) Production use (optimized mode)
# OPT ?= -g2              # (B) Debug mode, w/ full line-level debugging symbols
# OPT ?= -O2 -g2 -DNDEBUG # (C) Profiling mode: opt, but w/debugging symbols
#-----------------------------------------------

# detect what platform we're building on
$(shell CC="$(CC)" CXX="$(CXX)" TARGET_OS="$(TARGET_OS)" \
    ./build_detect_platform build_config.mk ./)
# this file is generated by the previous line to set build flags and sources
include build_config.mk

CFLAGS += -I. -I./include $(PLATFORM_CCFLAGS) $(OPT)
CXXFLAGS += -I. -I./include $(PLATFORM_CXXFLAGS) $(OPT)

LDFLAGS += $(PLATFORM_LDFLAGS)
LIBS += $(PLATFORM_LIBS)

LIBOBJECTS = $(SOURCES:.cc=.o)
MEMENVOBJECTS = $(MEMENV_SOURCES:.cc=.o)

TESTUTIL = ./util/testutil.o
TESTHARNESS = ./util/testharness.o $(TESTUTIL)

TESTS = \
   arena_test \
   autocompact_test \
   bloom_test \
   c_test \
   cache_test \
   coding_test \
   corruption_test \
   crc32c_test \
   db_test \
   dbformat_test \
   env_test \
   filename_test \
   filter_block_test \
   issue178_test \
   issue200_test \
   log_test \
   memenv_test \
   skiplist_test \
   table_test \
   version_edit_test \
   version_set_test \
   write_batch_test

PROGRAMS = db_bench leveldbutil $(TESTS)
BENCHMARKS = db_bench_sqlite3 db_bench_tree_db

LIBRARY = libleveldb.a
MEMENVLIBRARY = libmemenv.a

default: all

# Should we build shared libraries?
ifneq ($(PLATFORM_SHARED_EXT),)

ifneq ($(PLATFORM_SHARED_VERSIONED),true)
SHARED1 = libleveldb.$(PLATFORM_SHARED_EXT)
SHARED2 = $(SHARED1)
SHARED3 = $(SHARED1)
SHARED = $(SHARED1)
else
# Update db.h if you change these.
SHARED_MAJOR = 1
SHARED_MINOR = 15
SHARED1 = libleveldb.$(PLATFORM_SHARED_EXT)
SHARED2 = $(SHARED1).$(SHARED_MAJOR)
SHARED3 = $(SHARED1).$(SHARED_MAJOR).$(SHARED_MINOR)
SHARED = $(SHARED1) $(SHARED2) $(SHARED3)
$(SHARED1): $(SHARED3)
   ln -fs $(SHARED3) $(SHARED1)
$(SHARED2): $(SHARED3)
   ln -fs $(SHARED3) $(SHARED2)
endif

$(SHARED3):
   $(CXX) $(LDFLAGS) $(PLATFORM_SHARED_LDFLAGS)$(SHARED2) $(CXXFLAGS) $(PLATFORM_SHARED_CFLAGS) $(SOURCES) -o $(SHARED3) $(LIBS)

endif  # PLATFORM_SHARED_EXT

all: $(SHARED) $(LIBRARY)

check: all $(PROGRAMS) $(TESTS)
   for t in $(TESTS); do echo "***** Running $$t"; ./$$t || exit 1; done

clean:
   -rm -f $(PROGRAMS) $(BENCHMARKS) $(LIBRARY) $(SHARED) $(MEMENVLIBRARY) */*.o */*/*.o ios-x86/*/*.o ios-arm/*/*.o build_config.mk
   -rm -rf ios-x86/* ios-arm/*

$(LIBRARY): $(LIBOBJECTS)
   rm -f $@
   $(AR) -rs $@ $(LIBOBJECTS)

db_bench: db/db_bench.o $(LIBOBJECTS) $(TESTUTIL)
   $(CXX) $(LDFLAGS) db/db_bench.o $(LIBOBJECTS) $(TESTUTIL) -o $@ $(LIBS)

db_bench_sqlite3: doc/bench/db_bench_sqlite3.o $(LIBOBJECTS) $(TESTUTIL)
   $(CXX) $(LDFLAGS) doc/bench/db_bench_sqlite3.o $(LIBOBJECTS) $(TESTUTIL) -o $@ -lsqlite3 $(LIBS)

db_bench_tree_db: doc/bench/db_bench_tree_db.o $(LIBOBJECTS) $(TESTUTIL)
   $(CXX) $(LDFLAGS) doc/bench/db_bench_tree_db.o $(LIBOBJECTS) $(TESTUTIL) -o $@ -lkyotocabinet $(LIBS)

leveldbutil: db/leveldb_main.o $(LIBOBJECTS)
   $(CXX) $(LDFLAGS) db/leveldb_main.o $(LIBOBJECTS) -o $@ $(LIBS)

arena_test: util/arena_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) util/arena_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

autocompact_test: db/autocompact_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/autocompact_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

bloom_test: util/bloom_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) util/bloom_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

c_test: db/c_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/c_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

cache_test: util/cache_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) util/cache_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

coding_test: util/coding_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) util/coding_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

corruption_test: db/corruption_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/corruption_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

crc32c_test: util/crc32c_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) util/crc32c_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

db_test: db/db_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/db_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

dbformat_test: db/dbformat_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/dbformat_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

env_test: util/env_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) util/env_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

filename_test: db/filename_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/filename_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

filter_block_test: table/filter_block_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) table/filter_block_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

issue178_test: issues/issue178_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) issues/issue178_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

issue200_test: issues/issue200_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) issues/issue200_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

log_test: db/log_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/log_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

table_test: table/table_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) table/table_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

skiplist_test: db/skiplist_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/skiplist_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

version_edit_test: db/version_edit_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/version_edit_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

version_set_test: db/version_set_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/version_set_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

write_batch_test: db/write_batch_test.o $(LIBOBJECTS) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) db/write_batch_test.o $(LIBOBJECTS) $(TESTHARNESS) -o $@ $(LIBS)

$(MEMENVLIBRARY) : $(MEMENVOBJECTS)
   rm -f $@
   $(AR) -rs $@ $(MEMENVOBJECTS)

memenv_test : helpers/memenv/memenv_test.o $(MEMENVLIBRARY) $(LIBRARY) $(TESTHARNESS)
   $(CXX) $(LDFLAGS) helpers/memenv/memenv_test.o $(MEMENVLIBRARY) $(LIBRARY) $(TESTHARNESS) -o $@ $(LIBS)

ifeq ($(PLATFORM), IOS)
# For iOS, create universal object files to be used on both the simulator and
# a device.
PLATFORMSROOT=/Applications/Xcode.app/Contents/Developer/Platforms
SIMULATORROOT=$(PLATFORMSROOT)/iPhoneSimulator.platform/Developer
DEVICEROOT=$(PLATFORMSROOT)/iPhoneOS.platform/Developer
IOSVERSION=$(shell defaults read $(PLATFORMSROOT)/iPhoneOS.platform/version CFBundleShortVersionString)

.cc.o:
   mkdir -p ios-x86/$(dir $@)
   $(CXX) $(CXXFLAGS) -isysroot $(SIMULATORROOT)/SDKs/iPhoneSimulator$(IOSVERSION).sdk -arch i686 -c $< -o ios-x86/$@
   mkdir -p ios-arm/$(dir $@)
   xcrun -sdk iphoneos $(CXX) $(CXXFLAGS) -isysroot $(DEVICEROOT)/SDKs/iPhoneOS$(IOSVERSION).sdk -arch armv6 -arch armv7 -c $< -o ios-arm/$@
   lipo ios-x86/$@ ios-arm/$@ -create -output $@

.c.o:
   mkdir -p ios-x86/$(dir $@)
   $(CC) $(CFLAGS) -isysroot $(SIMULATORROOT)/SDKs/iPhoneSimulator$(IOSVERSION).sdk -arch i686 -c $< -o ios-x86/$@
   mkdir -p ios-arm/$(dir $@)
   xcrun -sdk iphoneos $(CC) $(CFLAGS) -isysroot $(DEVICEROOT)/SDKs/iPhoneOS$(IOSVERSION).sdk -arch armv6 -arch armv7 -c $< -o ios-arm/$@
   lipo ios-x86/$@ ios-arm/$@ -create -output $@

else
.cc.o:
   $(CXX) $(CXXFLAGS) -c $< -o $@

.c.o:
   $(CC) $(CFLAGS) -c $< -o $@
endif
deeppurple72
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
February 11, 2014, 02:45:37 AM
 #108

Both the BLOCK Diff and the P2POOL SHARE Diff have went up alot.

I think this has been a VERY sucessful launch indeed!


the pool rate right now is around 3.65 Ths



there is 1 miner in p2pool with over 1Ths alone ( nice! )  --   He is the King of the pool Cool



Perhaps the share diff has become too high for your hashrate
if you are not getting any accepted on your miner.    current share diff = 203.53719048 and steadily increasing

It also takes a few mins for new miners stats to kick in
if you just got in pool and your miner is getting accepted shares.




lin0sspice
Legendary
*
Offline Offline

Activity: 1190
Merit: 1002


View Profile
February 11, 2014, 03:31:14 AM
 #109

Awesome website Smiley

Website
Whitepaper
Discord
░░░█░░░░░░░░░░░░░░░░░░░░░░░░░
░░██░░░░░░░░░░░░░░░░░░░░░░██░░
███░░░░░░░░░░░░░░░░░░░░░░███
████░░░░░░░░░░░░░░░░░░░░░░████
███░░░░░░░░░░░░░░░░░░░░░░░░███
███░░░░░░░░░░░░░░░░░░░░░░███
███░░░░░░░░░░▄██▄░░░░░░░░░░███
███░░░░░░░░▄██████▄░░░░░░░░███
███▄░░░░░░▄████████▄░░░░░░▄███
████░░░░░▄██████████▄░░░░░████
████░░░░▄████████████▄░░░░████
░██████░░▀██████████▀░░███████
░███████░░░▀██████▀░░░████████
░████████▄░░░▀██▀░░░▄████████
░█████████▄░░░░░░░░▄███████░░░
░░█████████▄░░░░░░▄███████░░░░
░░░░██████████▄▄████████░░░░░░
░░░░░░████████████████░░░░░░░░
░░░░░░░██████████████░░░░░░░░░
░░░░░░░░░██████████░░░░░░░░░░░
VELOX PROJECT
The Future of Anonymous Trading
░░░█░░░░░░░░░░░░░░░░░░░░░░░░░
░░██░░░░░░░░░░░░░░░░░░░░░░██░░
███░░░░░░░░░░░░░░░░░░░░░░███
████░░░░░░░░░░░░░░░░░░░░░░████
███░░░░░░░░░░░░░░░░░░░░░░░░███
███░░░░░░░░░░░░░░░░░░░░░░███
███░░░░░░░░░░▄██▄░░░░░░░░░░███
███░░░░░░░░▄██████▄░░░░░░░░███
███▄░░░░░░▄████████▄░░░░░░▄███
████░░░░░▄██████████▄░░░░░████
████░░░░▄████████████▄░░░░████
░██████░░▀██████████▀░░███████
░███████░░░▀██████▀░░░████████
░████████▄░░░▀██▀░░░▄████████
░█████████▄░░░░░░░░▄███████░░░
░░█████████▄░░░░░░▄███████░░░░
░░░░██████████▄▄████████░░░░░░
░░░░░░████████████████░░░░░░░░
░░░░░░░██████████████░░░░░░░░░
░░░░░░░░░██████████░░░░░░░░░░░
Latest News
Twitter
Telegram
[/tab
deeppurple72
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
February 11, 2014, 04:10:18 AM
 #110

nice and "flashy" Cheesy

is the src code a wallet update -- as in mandatory update ?
or is it  just an updated  fix for compiling ( ie. the missing makefile for leveldb added ) ?

Do I need to update my wallet, or am I ok with the one i have already compiled?

Thanks!
lin0sspice
Legendary
*
Offline Offline

Activity: 1190
Merit: 1002


View Profile
February 11, 2014, 05:17:47 AM
 #111

I have 150,000 STY for sell guy Smiley
anyone interested ?

Website
Whitepaper
Discord
░░░█░░░░░░░░░░░░░░░░░░░░░░░░░
░░██░░░░░░░░░░░░░░░░░░░░░░██░░
███░░░░░░░░░░░░░░░░░░░░░░███
████░░░░░░░░░░░░░░░░░░░░░░████
███░░░░░░░░░░░░░░░░░░░░░░░░███
███░░░░░░░░░░░░░░░░░░░░░░███
███░░░░░░░░░░▄██▄░░░░░░░░░░███
███░░░░░░░░▄██████▄░░░░░░░░███
███▄░░░░░░▄████████▄░░░░░░▄███
████░░░░░▄██████████▄░░░░░████
████░░░░▄████████████▄░░░░████
░██████░░▀██████████▀░░███████
░███████░░░▀██████▀░░░████████
░████████▄░░░▀██▀░░░▄████████
░█████████▄░░░░░░░░▄███████░░░
░░█████████▄░░░░░░▄███████░░░░
░░░░██████████▄▄████████░░░░░░
░░░░░░████████████████░░░░░░░░
░░░░░░░██████████████░░░░░░░░░
░░░░░░░░░██████████░░░░░░░░░░░
VELOX PROJECT
The Future of Anonymous Trading
░░░█░░░░░░░░░░░░░░░░░░░░░░░░░
░░██░░░░░░░░░░░░░░░░░░░░░░██░░
███░░░░░░░░░░░░░░░░░░░░░░███
████░░░░░░░░░░░░░░░░░░░░░░████
███░░░░░░░░░░░░░░░░░░░░░░░░███
███░░░░░░░░░░░░░░░░░░░░░░███
███░░░░░░░░░░▄██▄░░░░░░░░░░███
███░░░░░░░░▄██████▄░░░░░░░░███
███▄░░░░░░▄████████▄░░░░░░▄███
████░░░░░▄██████████▄░░░░░████
████░░░░▄████████████▄░░░░████
░██████░░▀██████████▀░░███████
░███████░░░▀██████▀░░░████████
░████████▄░░░▀██▀░░░▄████████
░█████████▄░░░░░░░░▄███████░░░
░░█████████▄░░░░░░▄███████░░░░
░░░░██████████▄▄████████░░░░░░
░░░░░░████████████████░░░░░░░░
░░░░░░░██████████████░░░░░░░░░
░░░░░░░░░██████████░░░░░░░░░░░
Latest News
Twitter
Telegram
[/tab
CoinManiac
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
February 11, 2014, 07:10:47 AM
 #112

First giveaway of Stories

http://altcoingiveaways.com/index.php/topic,996.0.html

NEM NXT NXTL NEX
CoinManiac
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
February 11, 2014, 07:20:16 AM
 #113

Second giveaways of Stories

http://ecoiner.org/giveaways/stories-upto-100-sty-giveaways-909/#post2098

NEM NXT NXTL NEX
Mark™
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 11, 2014, 07:54:27 AM
 #114

I'm in.
jelin1984
Legendary
*
Offline Offline

Activity: 2408
Merit: 1004



View Profile
February 11, 2014, 09:59:25 AM
 #115

at how many blocks half HuhHuhHuh??
CoinManiac
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
February 11, 2014, 10:02:02 AM
 #116

at how many blocks half HuhHuhHuh??

The block reward should halve every 10,000 blocks. block reward will go from 3000 to 1500

NEM NXT NXTL NEX
gxsbk
Newbie
*
Offline Offline

Activity: 53
Merit: 0


View Profile
February 11, 2014, 10:11:15 AM
 #117

http://sty.hasher.ca/
http://sty.pool.mineabit.com/index.php
 
Not receive the email confirmation, can not edit the account
ljp7839008
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250



View Profile
February 11, 2014, 10:17:50 AM
 #118

I'm in Wink
thx
a123
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
February 11, 2014, 10:28:39 AM
 #119

we need a deviantart bot or smthg Cheesy post a bounty for tt?
nilangerxing
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
February 11, 2014, 10:37:31 AM
 #120

I'm in.
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!