Bitcoin Forum
April 19, 2024, 01:05:17 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 22 23 24 25 26 27 »
  Print  
Author Topic: [HXX] (OLD)(Community Takeover | No ICO / No premine | YoBit | "A" rank by Earlz  (Read 35539 times)
fairglu
Legendary
*
Offline Offline

Activity: 1100
Merit: 1030


View Profile WWW
July 08, 2015, 07:00:50 AM
 #341

i will push sourcecode to git later.. maybe tomorrow

github:
https://github.com/hexxcointakeover/hexxcoin

I just tried to compile it to update the explorer, but it fails with the following error (Ubuntu 14), probably from a secp256k1 version issue

Code:
key.cpp: In member function 'bool CPubKey::Decompress()':
key.cpp:669:104: error: cannot convert 'int*' to 'unsigned char*' for argument '3' to 'int secp256k1_ec_pubkey_decompress(const secp256k1_context_t*, const unsigned char*, unsigned char*, int*)'
     int ret = secp256k1_ec_pubkey_decompress(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &clen);
                                                                                                        ^
make: *** [obj/key.o] Error 1

(I guess ideal would be to include the secp256k1 version you require in the source and link to it statically)

1713531917
Hero Member
*
Offline Offline

Posts: 1713531917

View Profile Personal Message (Offline)

Ignore
1713531917
Reply with quote  #2

1713531917
Report to moderator
1713531917
Hero Member
*
Offline Offline

Posts: 1713531917

View Profile Personal Message (Offline)

Ignore
1713531917
Reply with quote  #2

1713531917
Report to moderator
1713531917
Hero Member
*
Offline Offline

Posts: 1713531917

View Profile Personal Message (Offline)

Ignore
1713531917
Reply with quote  #2

1713531917
Report to moderator
BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713531917
Hero Member
*
Offline Offline

Posts: 1713531917

View Profile Personal Message (Offline)

Ignore
1713531917
Reply with quote  #2

1713531917
Report to moderator
schernikau
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
July 08, 2015, 07:30:04 AM
 #342

i will push sourcecode to git later.. maybe tomorrow

github:
https://github.com/hexxcointakeover/hexxcoin

I just tried to compile it to update the explorer, but it fails with the following error (Ubuntu 14), probably from a secp256k1 version issue

Code:
key.cpp: In member function 'bool CPubKey::Decompress()':
key.cpp:669:104: error: cannot convert 'int*' to 'unsigned char*' for argument '3' to 'int secp256k1_ec_pubkey_decompress(const secp256k1_context_t*, const unsigned char*, unsigned char*, int*)'
     int ret = secp256k1_ec_pubkey_decompress(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &clen);
                                                                                                        ^
make: *** [obj/key.o] Error 1

(I guess ideal would be to include the secp256k1 version you require in the source and link to it statically)

git clone http://www.github.com/bitcoin/secp256k1
cd secp256k1
git checkout a1d5ae1
./autogen.sh
./configure
make
make install
fairglu
Legendary
*
Offline Offline

Activity: 1100
Merit: 1030


View Profile WWW
July 08, 2015, 08:44:22 AM
 #343

git checkout a1d5ae1
...
make install

This is the problematic portion: having a dependency to a specific version of a shared library being installed at the OS level.
(hence why I wrote the library should be statically linked and moved to the wallet source if a specific version is required, otherwise it's the beginning of dll hell)

cisahasa
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
July 08, 2015, 09:17:31 AM
Last edit: July 10, 2015, 12:53:11 AM by cisahasa
 #344

im not a  linux pro and i broke my linux laptop..
but ocminer solved same issue with octanecoin adding:
-Wl,-rpath,/usr/local/include -L/usr/local/include -lsecp256k1
like this:


Code:
USE_UPNP:=0
USE_WALLET:=1

LINK:=$(CXX)
ARCH:=$(system lscpu | head -n 1 | awk '{print $2}')

DEFS=-DBOOST_SPIRIT_THREADSAFE
#DEFS += -DUSE_SECP256K1
DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH))
LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))

LMODE = dynamic
LMODE2 = dynamic
ifdef STATIC
LMODE = static
ifeq (${STATIC}, all)
LMODE2 = static
endif
endif

# for boost 1.37, add -mt to the boost libraries
LIBS += \
 -Wl,-B$(LMODE) \
   -l boost_system$(BOOST_LIB_SUFFIX) \
   -l boost_filesystem$(BOOST_LIB_SUFFIX) \
   -l boost_program_options$(BOOST_LIB_SUFFIX) \
   -l boost_thread$(BOOST_LIB_SUFFIX) \
   -l db_cxx$(BDB_LIB_SUFFIX) \
   -l ssl \
   -l crypto

ifndef USE_UPNP
override USE_UPNP = -
endif
ifneq (${USE_UPNP}, -)
LIBS += -l miniupnpc
DEFS += -DUSE_UPNP=$(USE_UPNP)
endif

LIBS+= \
 -Wl,-B$(LMODE2) \
   -l z \
   -l dl \
   -l pthread \
   -Wl,-rpath,/usr/local/include -L/usr/local/include -lsecp256k1

fairglu
Legendary
*
Offline Offline

Activity: 1100
Merit: 1030


View Profile WWW
July 08, 2015, 09:37:51 AM
 #345

im not a  linux pro and i broke my linux laptop..
but ocminer solved same issue with octanecoin adding:

Thanks, I just commented out the DUSE_SECP256K1 line and it seems to work

Code:
#DEFS += -DUSE_SECP256K1

Explorer now catching up!

cisahasa
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
July 08, 2015, 09:46:21 AM
 #346

im not a  linux pro and i broke my linux laptop..
but ocminer solved same issue with octanecoin adding:

Thanks, I just commented out the DUSE_SECP256K1 line and it seems to work

Code:
#DEFS += -DUSE_SECP256K1

Explorer now catching up!

great, must update makefile.unix to git

edit: updated

cisahasa
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
July 08, 2015, 11:11:17 AM
 #347

seems like SuprNova.cc is in new chain now
blockexplorer also working
YoBit still at old chain

1qaz
Hero Member
*****
Offline Offline

Activity: 666
Merit: 500


View Profile
July 08, 2015, 11:29:22 AM
 #348

seems like SuprNova.cc is in new chain now
blockexplorer also working
YoBit still at old chain

wait yobit and im send you coins  ^ cryptoid.info informed from twitter , fast responded ^ fine
cisahasa
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
July 08, 2015, 11:40:21 AM
Last edit: July 08, 2015, 12:11:51 PM by cisahasa
 #349

seems like SuprNova.cc is in new chain now
blockexplorer also working
YoBit still at old chain

wait yobit and im send you coins  ^ cryptoid.info informed from twitter , fast responded ^ fine

any answer from yobit?
i also informed them

luckily this exploid had no affect atall to pos, and there is no sing that exploid was ever used to hexx pow
all miners where in equal position when pow

pos diff adjusting just like it should:
"proof-of-stake" : 24541.31411886
looks fine

gennadiv
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
July 08, 2015, 11:44:17 AM
 #350

let the worker pool for mining
gennadiv
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
July 08, 2015, 12:19:40 PM
 #351

somewhere there is a working pool
madmartyk
Legendary
*
Online Online

Activity: 2674
Merit: 1030


Yes I am a pirate, 300 years too late!


View Profile
July 08, 2015, 12:23:05 PM
 #352

somewhere there is a working pool

The coin is POS why do you want a pool?

gennadiv
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
July 08, 2015, 12:24:52 PM
 #353

pos like this
gennadiv
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
July 08, 2015, 12:26:23 PM
 #354

how to get
gennadiv
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
July 08, 2015, 12:34:12 PM
 #355

poses like this
gennadiv
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
July 08, 2015, 12:35:40 PM
 #356

it it's impossible to obtain
cisahasa
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
July 08, 2015, 12:37:00 PM
Last edit: July 08, 2015, 03:38:41 PM by cisahasa
 #357

it it's impossible to obtain

https://yobit.net/en/trade/HXX/BTC/

they are still at old chain but...
Rank  Name   Addresses   Net Worth           Percent of coins          Last Change
1       YoBit     27             72,664 HXX         14.23 %                    5 days 9 hours

smarterhash
Hero Member
*****
Offline Offline

Activity: 553
Merit: 500

Contact : TheSmartHasher@gmail.com


View Profile
July 08, 2015, 12:39:16 PM
Last edit: July 08, 2015, 12:51:59 PM by smarterhash
 #358

moving post up again:

LATEST UPDATE, URGENT TO UPDATE 2.0.0.7:


wallet protocol version 60027
client version 2.0.0.7 TEST4
-updated 3 inner seeds
-one prefix value restored
-added checkpoints
-irc removed
-fixed version number to wallet
-alert and checkpoint keys changed
-pos reward fix
-removed leveldb leftovers from source
-darksend options still not activated to wallet
-makefile.unix fix to source
-added more seednodes to wallet
 
win wallet v2.0.0.7:
http://www.filedropper.com/hexx-qt_6

https://www.virustotal.com/en/file/e2662b7e10fc968479c41626f7498df2e557798a91dd61885bc011b2f22745c9/analysis/1436358118/

e2662b7e10fc968479c41626f7498df2e557798a91dd61885bc011b2f22745c9

source v2.0.0.7:
github:
https://github.com/hexxcointakeover/hexxcoin


source code problem

root@server:/home/coins/hexxcoin/src# make -f makefile.unix USE_PNP=-
makefile.unix:49: *** missing separator. Stop.



this:    -l pthread

should be:    -l pthread \
gennadiv
Full Member
***
Offline Offline

Activity: 139
Merit: 100


View Profile
July 08, 2015, 12:40:59 PM
 #359

mining pool or solo settings for connections ports rprport= port=
madmartyk
Legendary
*
Online Online

Activity: 2674
Merit: 1030


Yes I am a pirate, 300 years too late!


View Profile
July 08, 2015, 12:49:10 PM
 #360

mining

Mining for what? The .00001 fees?  POW on this coin is OVER!!  If you want to support the coin wait until YoBit updates the wallet and buy some!!

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 [18] 19 20 21 22 23 24 25 26 27 »
  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!