Author

Topic: [TEK] TEKcoin Hi-PoS hybrid pos/pow no premine/ipo/ico - page 300. (Read 446062 times)

legendary
Activity: 1023
Merit: 1001
Tokenize Fantasy Sports
Made a real quick revision to the v1.0 of my wallet, had a few things bugging me.

Fixed splash screen - added unlock wallet - added QR code

https://github.com/presstab/TEK/releases/tag/v1.0.1

i went to menu, unlock wallet, nothing happens...

Was the wallet locked at the time?

@presstab

Thanks for all your effort. Outstanding work man!

Just tested it, wallet is locked, I clicked the unlock for pos in the menu and nothing happens.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Awesome cazze thanks for showing the lines of code to comment out and confirming it does in fact build on Linux.  The newest release has two lines below UPNP that will also need to be commented out.  They start with qrencode.
newbie
Activity: 31
Merit: 0
still cant compile in linux.

seems to only work in windows environment

After modify tle line 5 in src/qt/coincontroldialog.cpp changing coincontrolUnits.h to coincontrolunit.h move forward but later stop compilation here:

/usr/bin/ld: cannot find -lboost_system-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_filesystem-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_program_options-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_thread-mgw48-mt-s-1_55
collect2: error: ld returned 1 exit status
make: *** [tekcoin-qt] Error 1

i think is looking for windows tools in linux
is there a way to fix it?
or is possible to find a linux source ?

Thanks

What version of boost do you have?  I have it set for 1.55 .  also the first part of the .pro file might need to be commented out for Linux builds.  I am on mobile all day so don't have much detail to give but if you check out .pro files of other coins like hbn it will give a good clue.

Did you commented the following in tekcoin-qt.pro before you generated the Makefile?

Code:
#uncomment the following section to enable building on windows:
#windows:LIBS += -lshlwapi
#LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,)
#LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX
#windows:LIBS += -lws2_32 -lole32 -loleaut32 -luuid -lgdi32
#LIBS += -lboost_system-mgw48-mt-s-1_55 -lboost_filesystem-mgw48-mt-s-1_55 -lboost_program_options-mgw48-mt-s-1_55 -lboost_thread-mgw48-mt-s-1_55
#BOOST_LIB_SUFFIX=-mgw48-mt-s-1_55
#BOOST_INCLUDE_PATH=C:/deps/boost_1_55_0
#BOOST_LIB_PATH=C:/deps/boost_1_55_0/stage/lib
#BDB_INCLUDE_PATH=C:/deps/db-4.8.30.NC/build_unix
#BDB_LIB_PATH=C:/deps/db-4.8.30.NC/build_unix
#OPENSSL_INCLUDE_PATH=C:/deps/openssl-1.0.1g/include
#OPENSSL_LIB_PATH=C:/deps/openssl-1.0.1g
#MINIUPNPC_LIB_PATH=C:/deps/miniupnpc
#MINIUPNPC_INCLUDE_PATH=c:/deps

Works like a charm here,

cazze
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
still cant compile in linux.

seems to only work in windows environment

After modify tle line 5 in src/qt/coincontroldialog.cpp changing coincontrolUnits.h to coincontrolunit.h move forward but later stop compilation here:

/usr/bin/ld: cannot find -lboost_system-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_filesystem-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_program_options-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_thread-mgw48-mt-s-1_55
collect2: error: ld returned 1 exit status
make: *** [tekcoin-qt] Error 1

i think is looking for windows tools in linux
is there a way to fix it?
or is possible to find a linux source ?

Thanks

What version of boost do you have?  I have it set for 1.55 .  also the first part of the .pro file might need to be commented out for Linux builds.  I am on mobile all day so don't have much detail to give but if you check out .pro files of other coins like hbn it will give a good clue.
full member
Activity: 147
Merit: 100
still cant compile in linux.

seems to only work in windows environment

After modify tle line 5 in src/qt/coincontroldialog.cpp changing coincontrolUnits.h to coincontrolunit.h move forward but later stop compilation here:

/usr/bin/ld: cannot find -lboost_system-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_filesystem-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_program_options-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_thread-mgw48-mt-s-1_55
collect2: error: ld returned 1 exit status
make: *** [tekcoin-qt] Error 1

i think is looking for windows tools in linux
is there a way to fix it?
or is possible to find a linux source ?

Thanks

Isn't there a way to specify the gcc compile in the Linux build? Sorry, I can't remember how to do that.
member
Activity: 92
Merit: 10
still cant compile in linux.

seems to only work in windows environment

After modify tle line 5 in src/qt/coincontroldialog.cpp changing coincontrolUnits.h to coincontrolunit.h move forward but later stop compilation here:

/usr/bin/ld: cannot find -lboost_system-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_filesystem-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_program_options-mgw48-mt-s-1_55
/usr/bin/ld: cannot find -lboost_thread-mgw48-mt-s-1_55
collect2: error: ld returned 1 exit status
make: *** [tekcoin-qt] Error 1

i think is looking for windows tools in linux
is there a way to fix it?
or is possible to find a linux source ?

Thanks
hero member
Activity: 966
Merit: 513
Made a real quick revision to the v1.0 of my wallet, had a few things bugging me.

Fixed splash screen - added unlock wallet - added QR code

https://github.com/presstab/TEK/releases/tag/v1.0.1

i went to menu, unlock wallet, nothing happens...

Was the wallet locked at the time?

@presstab

Thanks for all your effort. Outstanding work man!
legendary
Activity: 1023
Merit: 1001
Tokenize Fantasy Sports
Made a real quick revision to the v1.0 of my wallet, had a few things bugging me.

Fixed splash screen - added unlock wallet - added QR code

https://github.com/presstab/TEK/releases/tag/v1.0.1

i went to menu, unlock wallet, nothing happens...
member
Activity: 98
Merit: 10
so many good updates  Grin stake weight shows up well on my side. everything going well as usual.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Made a real quick revision to the v1.0 of my wallet, had a few things bugging me.

Fixed splash screen - added unlock wallet - added QR code

https://github.com/presstab/TEK/releases/tag/v1.0.1
legendary
Activity: 1023
Merit: 1001
Tokenize Fantasy Sports
holy smokes, that is amazing work!  running presstabs version, coin control and confirmations listed.  I don't have any coins staking at the moment, but runs good.

I have another system that never had tek on it.  it sees nodes, but doesn't sync, is there a way you could have it force sync with a node?

For the time being you need to download the initial download of the block chain here https://drive.google.com/file/d/0B0M-bp2HC0eYdXlqc0RQWkFFRnc/edit?usp=sharing

Put that into your appdata folder. If you aren't familiar with this process then check out this link http://wiki.hobonickels.info/index.php?title=Replace_Blockchain

I used the following when starting out initially so it also is an option if you didn't want to download the chain.
download the client with the nongradiant logos, get the dlls from hbn(or others) files, it will sync properly, then you can add this one once synced and get all the new features.
member
Activity: 98
Merit: 10
i have 2 mature blocks ready to stake so i will check if presstab's version calculation on weight works accordingly^^
no problem updating so far.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
holy smokes, that is amazing work!  running presstabs version, coin control and confirmations listed.  I don't have any coins staking at the moment, but runs good.

I have another system that never had tek on it.  it sees nodes, but doesn't sync, is there a way you could have it force sync with a node?

For the time being you need to download the initial download of the block chain here https://drive.google.com/file/d/0B0M-bp2HC0eYdXlqc0RQWkFFRnc/edit?usp=sharing

Put that into your appdata folder. If you aren't familiar with this process then check out this link http://wiki.hobonickels.info/index.php?title=Replace_Blockchain
legendary
Activity: 1023
Merit: 1001
Tokenize Fantasy Sports
holy smokes, that is amazing work!  running presstabs version, coin control and confirmations listed.  I don't have any coins staking at the moment, but runs good.

I have another system that never had tek on it.  it sees nodes, but doesn't sync, is there a way you could have it force sync with a node?
newbie
Activity: 8
Merit: 0
I'm gonna watch it anyway, could Surprise me.
legendary
Activity: 1540
Merit: 1052
May the force bit with you.
i can confirm it does show stake wieghts

Whatever bounties are out there, you can give mine to Presstab.

Let me know if you can find the original source code, so we can fix the sync issue.
legendary
Activity: 938
Merit: 1000
i can confirm it does show stake wieghts
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Well im searchin into the Makefile and i cant see tekcoinUnits.h with U.. just tekcoinunits.h

and in src/qt/ just tekcoinunits.h appear

any idea?

I see it, and the compile error tells you where. /src/qt/coincontroldialog.cpp line 5

A quick search through the directory tells me this is the only occurance of the capital U - but could be wrong

member
Activity: 92
Merit: 10
Well im searchin into the Makefile and i cant see tekcoinUnits.h with U.. just tekcoinunits.h

and in src/qt/ just tekcoinunits.h appear

any idea?
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
getting this error now:

src/qt/coincontroldialog.cpp:5:26: fatal error: tekcoinUnits.h: No existe el fichero o el directorio
compilation terminated.

I cant compile

Hmmmm that is really interesting. It should be tekcoinunits.h with no capital U ... it didn't throw this error on windows compile
Jump to: