Author

Topic: [HYP] HyperStake | Generous Reward Staking | Advanced Staking Controls & Wallet - page 120. (Read 679332 times)

sr. member
Activity: 329
Merit: 250
are you using qmake or autotools? if qmake, try autotools.
i've used qmake, indeed ./autogen.sh && ./configure && make did the job, thank you!
legendary
Activity: 1610
Merit: 1000
Crackpot Idealist
hi!
compiling the wallet on linux gives me the following error:
Code:
cd /home/skunk/bitcoin/HyperStake; /bin/sh share/genbuild.sh /home/skunk/bitcoin/HyperStake/build/build.h
g++ -c -pipe -fstack-protector-all --param ssp-buffer-size=1 -msse2 -O2 -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -D_REENTRANT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN -D__NO_SYSTEM_INCLUDES -DUSE_UPNP=1 -DSTATICLIB -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_XML_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/include/db4.8 -I/usr/share/qt4/mkspecs/linux-g++ -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Ibuild -Ibuild -o build/blockbrowser.o src/qt/blockbrowser.cpp
src/qt/blockbrowser.cpp: In member function ‘double BlockBrowser::getTxFees(std::string)’:
src/qt/blockbrowser.cpp:196:15: error: variable ‘CTxDB txdb’ has initializer but incomplete type
     CTxDB txdb("r");
               ^
Makefile:2549: recipe for target 'build/blockbrowser.o' failed
make: *** [build/blockbrowser.o] Error 1
any hint please?
thank you

are you using qmake or autotools? if qmake, try autotools.
sr. member
Activity: 329
Merit: 250
hi!
compiling the wallet on linux gives me the following error:
Code:
cd /home/skunk/bitcoin/HyperStake; /bin/sh share/genbuild.sh /home/skunk/bitcoin/HyperStake/build/build.h
g++ -c -pipe -fstack-protector-all --param ssp-buffer-size=1 -msse2 -O2 -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -D_REENTRANT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN -D__NO_SYSTEM_INCLUDES -DUSE_UPNP=1 -DSTATICLIB -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_XML_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/include/db4.8 -I/usr/share/qt4/mkspecs/linux-g++ -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Ibuild -Ibuild -o build/blockbrowser.o src/qt/blockbrowser.cpp
src/qt/blockbrowser.cpp: In member function ‘double BlockBrowser::getTxFees(std::string)’:
src/qt/blockbrowser.cpp:196:15: error: variable ‘CTxDB txdb’ has initializer but incomplete type
     CTxDB txdb("r");
               ^
Makefile:2549: recipe for target 'build/blockbrowser.o' failed
make: *** [build/blockbrowser.o] Error 1
any hint please?
thank you
newbie
Activity: 11
Merit: 0
http://image.free.in.th/v/2013/it/150806094246.jpg

I see Network weight 4112691758 and I have my weight 682332
I have 23000 Hyp in my wallet and split them to 4 Blocks (5750 hyp per Block and allover max age)
I want to know  How much my weight or my Hyp that optimize to stake in about max age?
Thx for advice me
legendary
Activity: 1133
Merit: 1050
I would also recommend trying to cook it using autotools

otherwise, I don't have any working pi's anymore to help ya out. Cooked fine on the odroid but thats a whole different critter. You can keep trying your luck with other folk's packages but I've not had a whole lot of luck with that in the past. What I can say is that if you want to just bite the bullet and have qt5 working, I would build it from source . . . a good weekend project.

Ouch! 38 hours to compile with overclock! That IS a weekend project, literally.
Thanks for the link. Would much rather compile than rely on someone else's.

I don't know if ZeeWolf's script is up to date, but you will definitely want to use autotools as BilloTronic suggested.

Here are instructions for odroid, raspi should be similar but handle the QT parts yourself.

You should be able to install by using the following in terminal:
Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libdb5.1-dev libdb5.1++-dev libminiupnpc-dev libqrencode-dev
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler
I think that is all the dependencies, someone let me know if I missed one. This bitcoin document is helpful https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md


Then to build the daemon:
Code:
git clone https://github.com/hyperstake/hyperstake
cd hyperstake
./autogen.sh
./configure --with-incompatible-bdb --with-gui=no
make

This will go through the build process, and leave you with hyperstaked in /hyperstake/src
to run the daemon:
Code:
./src/hyperstaked &

To build the QT version, you would change it to --with-gui=qt5 and it should leave the hyperstake-qt app in /src/qt


Thanks for the crosslink. I'll give this a shot again over the next few days and let everyone know.
I appreciate it.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
I don't know if ZeeWolf's script is up to date, but you will definitely want to use autotools as BilloTronic suggested.

Here are instructions for odroid, raspi should be similar but handle the QT parts yourself.

You should be able to install by using the following in terminal:
Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libdb5.1-dev libdb5.1++-dev libminiupnpc-dev libqrencode-dev
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler
I think that is all the dependencies, someone let me know if I missed one. This bitcoin document is helpful https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md


Then to build the daemon:
Code:
git clone https://github.com/hyperstake/hyperstake
cd hyperstake
./autogen.sh
./configure --with-incompatible-bdb --with-gui=no
make

This will go through the build process, and leave you with hyperstaked in /hyperstake/src
to run the daemon:
Code:
./src/hyperstaked &

To build the QT version, you would change it to --with-gui=qt5 and it should leave the hyperstake-qt app in /src/qt

legendary
Activity: 1610
Merit: 1000
Crackpot Idealist
I would also recommend trying to cook it using autotools

otherwise, I don't have any working pi's anymore to help ya out. Cooked fine on the odroid but thats a whole different critter. You can keep trying your luck with other folk's packages but I've not had a whole lot of luck with that in the past. What I can say is that if you want to just bite the bullet and have qt5 working, I would build it from source . . . a good weekend project.
legendary
Activity: 1133
Merit: 1050
Compiling on a Raspberry. I see HYP QT uses QT4. If I upgrade to QT5 will it cause issues? Anyone know before I experiment?

Did they ever release a package for that or do you still have to cook from source?

QT5? I've found this http://loydcraft.com/2015/01/28/qt5-compiled-for-raspberry-pi/
But couldn't get it to work on Jessie. I'm going to try Wheezy.

I couldn't get the source to compile last night for HYP QT on my RPi. I followed the wikia instructions and kept coming up with an error and failed build. (Didn't write down error)

I also tried skipping that and just downloading zeewolf's script. That too failed to give me usable applications. The desktop icon directs to nowhere, trying
Code:
./hyperstaked
gives me false bash errors.

Any thoughts?

So the daemon is not compiling for you either?

I didn't try it with the wiki setup instructions (just the QT). But with zeewolf's script which says it will install daemon and qt it didn't do either.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Compiling on a Raspberry. I see HYP QT uses QT4. If I upgrade to QT5 will it cause issues? Anyone know before I experiment?

Did they ever release a package for that or do you still have to cook from source?

QT5? I've found this http://loydcraft.com/2015/01/28/qt5-compiled-for-raspberry-pi/
But couldn't get it to work on Jessie. I'm going to try Wheezy.

I couldn't get the source to compile last night for HYP QT on my RPi. I followed the wikia instructions and kept coming up with an error and failed build. (Didn't write down error)

I also tried skipping that and just downloading zeewolf's script. That too failed to give me usable applications. The desktop icon directs to nowhere, trying
Code:
./hyperstaked
gives me false bash errors.

Any thoughts?

So the daemon is not compiling for you either?
legendary
Activity: 1133
Merit: 1050
Compiling on a Raspberry. I see HYP QT uses QT4. If I upgrade to QT5 will it cause issues? Anyone know before I experiment?

Did they ever release a package for that or do you still have to cook from source?

QT5? I've found this http://loydcraft.com/2015/01/28/qt5-compiled-for-raspberry-pi/
But couldn't get it to work on Jessie. I'm going to try Wheezy.

I couldn't get the source to compile last night for HYP QT on my RPi. I followed the wikia instructions and kept coming up with an error and failed build. (Didn't write down error)

I also tried skipping that and just downloading zeewolf's script. That too failed to give me usable applications. The desktop icon directs to nowhere, trying
Code:
./hyperstaked
gives me false bash errors.

Any thoughts?
legendary
Activity: 1610
Merit: 1000
Crackpot Idealist
Compiling on a Raspberry. I see HYP QT uses QT4. If I upgrade to QT5 will it cause issues? Anyone know before I experiment?

Did they ever release a package for that or do you still have to cook from source?
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Compiling on a Raspberry. I see HYP QT uses QT4. If I upgrade to QT5 will it cause issues? Anyone know before I experiment?

I (VERY) quickly looked at the source and didn't see anything that tossed up the red flag regarding Qt5. In fact the Mac wallet is compiled against Qt 5.4.1 so it should be fine.

Yes HYP was compatible with QT5 a long time ago Wink https://github.com/hyperstake/HyperStake/commit/ac8fafa11df9a49769b4280ddcf1b43b1099bc25
hero member
Activity: 750
Merit: 500
Compiling on a Raspberry. I see HYP QT uses QT4. If I upgrade to QT5 will it cause issues? Anyone know before I experiment?

I (VERY) quickly looked at the source and didn't see anything that tossed up the red flag regarding Qt5. In fact the Mac wallet is compiled against Qt 5.4.1 so it should be fine.
legendary
Activity: 1133
Merit: 1050
Compiling on a Raspberry. I see HYP QT uses QT4. If I upgrade to QT5 will it cause issues? Anyone know before I experiment?
hero member
Activity: 750
Merit: 500
i think the coin will be stronger in future than now ..... dev is active and Pro ..... the coin will be valuable so bought some of them ....

Get HYPhy! Wink
hero member
Activity: 546
Merit: 500
i think the coin will be stronger in future than now ..... dev is active and Pro ..... the coin will be valuable so bought some of them ....
legendary
Activity: 1610
Merit: 1000
Crackpot Idealist
presstab hows the odriod doing? still runing hyp only?

I have the odroid sitting idle at the moment. I kept having problems where if it lost power that system time went back to unix time 0 and the chain would corrupt. I might try upgrading it to emmc and also running something other than lubuntu.

I did stake with mine for a few months and it was pretty solid other than those issues, and yes it was HYP only.

How about yours??

jigga what? mine has lost power a few times and ive not had any problems... course, i also have a little shrine to the great PoS starch in the sky to ensure smooth staking... that might be the difference.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
presstab hows the odriod doing? still runing hyp only?

I have the odroid sitting idle at the moment. I kept having problems where if it lost power that system time went back to unix time 0 and the chain would corrupt. I might try upgrading it to emmc and also running something other than lubuntu.

I did stake with mine for a few months and it was pretty solid other than those issues, and yes it was HYP only.

How about yours??
m33
legendary
Activity: 1064
Merit: 1000
Never invest with borrowed coins
presstab hows the odriod doing? still runing hyp only?
legendary
Activity: 3388
Merit: 3514
born once atheist
what? no posts in August yet? ok here ya go  .. go HYP!!   oh.. wait a minute....
Jump to: