CoMM0n
Newbie
Offline
Activity: 42
Merit: 0
|
|
March 01, 2014, 07:04:04 PM |
|
|
|
|
|
sidhujag
Legendary
Offline
Activity: 2044
Merit: 1005
|
|
March 01, 2014, 08:03:45 PM |
|
When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp please help me to fix this You need libcrypto++. I'm not sure what environment you are building in (cygwin, mingw?). If it doesn't have a libcrypto++ package then you may have to build it yourself. Hes prob using old version of source makefile not updated.
|
|
|
|
colinfx
|
|
March 01, 2014, 08:19:31 PM |
|
Hi, I was wondering, MaxCoin has really dropped in price a lot, to a level where I am thinking of buying some.
Is there currently a problem with the coin? Or is this simply a dip?
Thanks.
|
|
|
|
breakbeater
Sr. Member
Offline
Activity: 444
Merit: 250
Life is a bitch, get used to it...
|
|
March 01, 2014, 08:32:32 PM |
|
Don't buy this fuckin' scamcoin if youd don't want to be "goxed"
|
|
|
|
onliner
|
|
March 02, 2014, 12:22:43 AM |
|
Hi, I was wondering, MaxCoin has really dropped in price a lot, to a level where I am thinking of buying some.
Is there currently a problem with the coin? Or is this simply a dip?
Thanks.
MaxCoin is awesome, easy to mine etc. Max Keiser should PR more the MaxCoin.
|
|
|
|
goodluck0319
|
|
March 02, 2014, 02:14:08 AM |
|
rem motd @echo MAX.1GH.COM @echo =========== @echo Please replace our demo address with yours. @echo
cgminer.exe --keccak --no-submit-stale -o stratum+tcp://maxpool.1gh.com:17333 -u mdr5rGdv5mq4zniSZDb6FdWnhUjV71C5d9 -p x -I 14
is this correct setting for maxcoin?
|
|
|
|
pttinh
|
|
March 02, 2014, 03:07:53 AM |
|
When i built wallet in windows, i met this line: c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lcryptopp please help me to fix this You need libcrypto++. I'm not sure what environment you are building in (cygwin, mingw?). If it doesn't have a libcrypto++ package then you may have to build it yourself. I downloaded the lastest source code from github then built in mingw, included cryptopp path and lib in makefile. My makefile: # Copyright (c) 2009-2010 Satoshi Nakamoto # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php.
# Makefile for the MinGW g++ compiler/toolchain # # Assumes Berkeley DB, Boost, and OpenSSL have all been compiled and installed # into /usr/local (/usr/local/include, /usr/local/lib). # # If dependencies are somewhere else, run 'make DEPSDIR=/path/' # # Boost libraries are given wacky names that include the particular version of # boost you're using; set BOOST_SUFFIX appropriately. # # 'make clean' assumes it is running inside a MSYS shell, and uses 'rm' # to remove files.
CXX ?= g++
USE_UPNP:=- USE_IPV6:=1
DEPSDIR?=/usr/local BOOST_SUFFIX?=-mgw48-mt-s-1_55
INCLUDEPATHS= \ -I"$(CURDIR)" \ -I"$(DEPSDIR)/include" \ -I"c:/deps/boost_1_55_0" \ -I"c:/deps/db-4.8.30.NC/build_unix" \ -I"c:/deps/miniupnpc" \ -I"c:/deps/openssl-1.0.1e/include"
LIBPATHS= \ -L"$(CURDIR)/leveldb" \ -L"$(CURDIR)/cryptopp" \ -L"$(DEPSDIR)/lib" \ -L"c:/deps/boost_1_55_0/stage/lib" \ -L"c:/deps/db-4.8.30.NC/build_unix" \ -L"c:/deps/miniupnpc" \ -L"c:/deps/openssl-1.0.1e"
LIBS= \ -l leveldb \ -l cryptopp\ -l memenv \ -l boost_system$(BOOST_SUFFIX) \ -l boost_filesystem$(BOOST_SUFFIX) \ -l boost_program_options$(BOOST_SUFFIX) \ -l boost_thread$(BOOST_SUFFIX) \ -l boost_chrono$(BOOST_SUFFIX) \ -l db_cxx \ -l ssl \ -l crypto
DEFS=-D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE DEBUGFLAGS=-DWIN32_LEAN_AND_MEAN CFLAGS=-mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) # enable: ASLR, DEP and large address aware LDFLAGS=-Wl,--dynamicbase -Wl,--nxcompat -Wl,--large-address-aware
TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)
ifndef USE_UPNP override USE_UPNP = - endif ifneq (${USE_UPNP}, -) LIBS += -l miniupnpc -l iphlpapi DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP) endif
ifneq (${USE_IPV6}, -) DEFS += -DUSE_IPV6=$(USE_IPV6) endif
LIBS += -l mingwthrd -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l mswsock -l shlwapi
# TODO: make the mingw builds smarter about dependencies, like the linux/osx builds are HEADERS = $(wildcard *.h)
OBJS= \ leveldb/libleveldb.a \ obj/alert.o \ obj/version.o \ obj/checkpoints.o \ obj/netbase.o \ obj/addrman.o \ obj/crypter.o \ obj/key.o \ obj/db.o \ obj/init.o \ obj/keystore.o \ obj/main.o \ obj/net.o \ obj/protocol.o \ obj/bitcoinrpc.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcmining.o \ obj/rpcwallet.o \ obj/rpcblockchain.o \ obj/rpcrawtransaction.o \ obj/script.o \ obj/sync.o \ obj/util.o \ obj/wallet.o \ obj/walletdb.o \ obj/hash.o \ obj/bloom.o \ obj/noui.o \ obj/leveldb.o \ obj/txdb.o\ obj/keccak.o
all: maxcoind.exe
test check: test_maxcoin.exe FORCE test_bitcoin.exe
# # LevelDB support # DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
leveldb/libleveldb.a: cd leveldb && $(MAKE) CC=$(CC) CXX=$(CXX) OPT="$(CFLAGS)" TARGET_OS=NATIVE_WINDOWS libleveldb.a libmemenv.a && cd ..
obj/%.o: %.cpp $(HEADERS) $(CXX) -c $(CFLAGS) -o $@ $<
obj/%.o: %.c $(HEADERS) $(CXX) -c $(xCXXFLAGS) -fpermissive -o $@ $<
maxcoind.exe: $(OBJS:obj/%=obj/%) $(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))
obj-test/%.o: test/%.cpp $(HEADERS) $(CXX) -c $(TESTDEFS) $(CFLAGS) -o $@ $<
test_maxcoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%)) $(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework$(BOOST_SUFFIX) $(LIBS)
clean: rm -f maxcoind.exe test_maxcoin.exe rm -f obj/* rm -f obj-test/* cd leveldb && $(MAKE) TARGET_OS=NATIVE_WINDOWS clean && cd ..
FORCE:
|
|
|
|
ernie-
|
|
March 02, 2014, 04:48:16 AM |
|
Hi, I was wondering, MaxCoin has really dropped in price a lot, to a level where I am thinking of buying some.
Is there currently a problem with the coin? Or is this simply a dip?
Thanks.
Until people do something with the coin, eg. some useful services start accepting it, then there is no demand other than from hoarders. You need demand to keep the price stable or it will just fall as supply doesn't stop, a fatal design flaw in all crypto, supply doesn't adjust to demand. Coins should adjust their block rewards based on and averaged value of transactions over a given period of time. So if people are just mining and moving them to an exchange, the number of coins from a new mined block should reduce until transaction volume rises.
|
|
|
|
Alphi
|
|
March 02, 2014, 05:32:20 AM |
|
Coins should adjust their block rewards based on and averaged value of transactions over a given period of time. So if people are just mining and moving them to an exchange, the number of coins from a new mined block should reduce until transaction volume rises.
that is a not very well thought out suggestion and would lead to people simply moving money around to manipulate the price since there is no way to reliably tell who owns which addresses.
|
KARMA: KSc9oGgGga1TS4PqZNFxNS9LSDjdSgpC1B VERT: VgKaooA5ZuLLUXTUANJigH9wCPuzBUBv9H DOGE: DRN7pXid34o6wQgUuK8BoSjWJ5g8jiEs4e
|
|
|
MicroGuy
Legendary
Offline
Activity: 2506
Merit: 1030
Twitter @realmicroguy
|
|
March 02, 2014, 05:57:48 AM |
|
the number of coins from a new mined block should reduce until transaction volume rises.
That's an awesome idea, but I think people would just start sending coins to themselves as a work-around.
|
|
|
|
agx.io
Member
Offline
Activity: 84
Merit: 10
|
|
March 02, 2014, 06:01:55 AM |
|
You'll soon have more choices on where you can trade MAX! Austin Global Exchange is excited to announce we will carry MAX at launch! Follow us on Twitter or opt-in to our emails at agx.io to get the latest announcements - including the launch date for AGX! We posted information about the AGX Cold Storage process on our blog; check it out to learn more about how we keep your data and deposits safe: http://austinglobal.tumblr.com/image/78188469722- The Austin Global Team Find us at: agx.io twitter.com/austinglobalx austinglobal.tumblr.com
|
|
|
|
urtk
Newbie
Offline
Activity: 18
Merit: 0
|
|
March 02, 2014, 08:30:55 AM |
|
Very hard to find any block on maxcoinpool.com All on 1gh.com
|
|
|
|
onliner
|
|
March 02, 2014, 08:36:24 AM |
|
rem motd @echo MAX.1GH.COM @echo =========== @echo Please replace our demo address with yours. @echo
cgminer.exe --keccak --no-submit-stale -o stratum+tcp://maxpool.1gh.com:17333 -u mdr5rGdv5mq4zniSZDb6FdWnhUjV71C5d9 -p x -I 14
is this correct setting for maxcoin?
Yeap, your stats http://max.1gh.com/user?wallet=mdr5rGdv5mq4zniSZDb6FdWnhUjV71C5d9
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
March 02, 2014, 08:37:57 AM |
|
https://max.suprnova.cc working very well and has 0% Fee AND 5 MAX Block Bonus !
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
fcode
|
|
March 02, 2014, 10:07:21 AM |
|
I downloaded the lastest source code from github then built in mingw, included cryptopp path and lib in makefile. My makefile:
Is there a libcryptopp.a or libcryptopp.dll(.so) in that path? It might be in a subdirectory or something. You might only have the static library in which case you should remove the "-l cryptopp" and add the static library to OBJS or something like: OBJS= \ cryptopp/libcryptopp.a \
|
|
|
|
altsay
|
|
March 02, 2014, 11:23:23 AM |
|
MCXNow down?
|
|
|
|
pearstar20
Newbie
Offline
Activity: 51
Merit: 0
|
|
March 02, 2014, 11:42:29 AM |
|
72.5% hashpower on 1gh.... going on fork soon... Was great run, now its over as miners can't understand to spread their power around pools. We're making money only to one pool and destroying ourselves. Have fun watching it dying.
|
|
|
|
ernie-
|
|
March 02, 2014, 11:49:42 AM |
|
72.5% hashpower on 1gh.... going on fork soon... Was great run, now its over as miners can't understand to spread their power around pools. We're making money only to one pool and destroying ourselves. Have fun watching it dying.
Why would it fork? With 72.5% of the hash power it is the main fork, it's not going to fork again.
|
|
|
|
altsay
|
|
March 02, 2014, 11:52:29 AM |
|
Those who put their hash power on 1gh are simply stupid. They cant see the fact that they just huritng themselves.
|
|
|
|
urtk
Newbie
Offline
Activity: 18
Merit: 0
|
|
March 02, 2014, 11:56:02 AM |
|
72.5% hashpower on 1gh.... going on fork soon... Was great run, now its over as miners can't understand to spread their power around pools. We're making money only to one pool and destroying ourselves. Have fun watching it dying.
I would like to switch to maxcoinpool.com, but there is not possible find any block. %(
|
|
|
|
|