Pages:
Author

Topic: . - page 16. (Read 39418 times)

newbie
Activity: 36
Merit: 0
February 11, 2014, 06:37:31 AM
I'm in.
member
Activity: 98
Merit: 10
February 11, 2014, 06:28:39 AM
we need a deviantart bot or smthg Cheesy post a bounty for tt?
sr. member
Activity: 490
Merit: 250
February 11, 2014, 06:17:50 AM
I'm in Wink
thx
newbie
Activity: 53
Merit: 0
February 11, 2014, 06:11:15 AM
http://sty.hasher.ca/
http://sty.pool.mineabit.com/index.php
 
Not receive the email confirmation, can not edit the account
full member
Activity: 224
Merit: 100
February 11, 2014, 06:02:02 AM
at how many blocks half HuhHuhHuh??

The block reward should halve every 10,000 blocks. block reward will go from 3000 to 1500
legendary
Activity: 2408
Merit: 1004
February 11, 2014, 05:59:25 AM
at how many blocks half HuhHuhHuh??
full member
Activity: 182
Merit: 100
February 11, 2014, 03:54:27 AM
I'm in.
full member
Activity: 224
Merit: 100
February 11, 2014, 03:20:16 AM
full member
Activity: 224
Merit: 100
February 11, 2014, 03:10:47 AM
legendary
Activity: 1190
Merit: 1002
February 11, 2014, 01:17:47 AM
I have 150,000 STY for sell guy Smiley
anyone interested ?
full member
Activity: 140
Merit: 100
February 11, 2014, 12:10:18 AM
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!
legendary
Activity: 1190
Merit: 1002
February 10, 2014, 11:31:14 PM
Awesome website Smiley
full member
Activity: 140
Merit: 100
February 10, 2014, 10:45:37 PM
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.




full member
Activity: 140
Merit: 100
February 10, 2014, 10:24:42 PM
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
full member
Activity: 140
Merit: 100
February 10, 2014, 10:21:04 PM
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
newbie
Activity: 14
Merit: 0
February 10, 2014, 06:15:41 PM
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
newbie
Activity: 25
Merit: 0
February 10, 2014, 06:07:58 PM
Add this on your config file :
addnode=54.194.99.126
addnode=193.87.209.46
full member
Activity: 140
Merit: 100
February 10, 2014, 06:05:58 PM
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?
newbie
Activity: 25
Merit: 0
February 10, 2014, 05:35:48 PM
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
legendary
Activity: 3486
Merit: 1126
February 10, 2014, 04:03:28 PM
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?
Pages:
Jump to: