Bitcoin Forum
April 28, 2024, 03:34:35 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: ..
1
2

Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 »
  Print  
Author Topic: [MOJO] MOJOv3 has been taken over by new devs  (Read 167259 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
September 18, 2016, 10:46:18 AM
 #2081

Morning guys,

yesterday i did a fresh install of mint on my staking box built wallets for 1337, Espers, Syndicate & OKCash without issues, still failing to compile mojocoin though current error I'm getting:

Code:
/usr/bin/ld: cannot find -lsecp256k1
collect2: error: ld returned 1 exit status
Makefile:984: recipe for target 'mojocoin2.3.0.1' failed
make: *** [mojocoin2.3.0.1] Error 1

Syndicate also has secp256k1 in the src folder and built without any issues, any advice?

Have a look in this section here, and you can extract the actual commands to build it manually
https://github.com/MojocoinV2/mojocoin/blob/master/mojocoin.pro#L208-L218

basically run these commands.

cd src/secp256k1

./autogen.sh

./configure --enable-module-recovery

make

once built, comment out this line

https://github.com/MojocoinV2/mojocoin/blob/master/mojocoin.pro#L213

then try building the rest again

Soooooooon...............
1714275275
Hero Member
*
Offline Offline

Posts: 1714275275

View Profile Personal Message (Offline)

Ignore
1714275275
Reply with quote  #2

1714275275
Report to moderator
1714275275
Hero Member
*
Offline Offline

Posts: 1714275275

View Profile Personal Message (Offline)

Ignore
1714275275
Reply with quote  #2

1714275275
Report to moderator
1714275275
Hero Member
*
Offline Offline

Posts: 1714275275

View Profile Personal Message (Offline)

Ignore
1714275275
Reply with quote  #2

1714275275
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714275275
Hero Member
*
Offline Offline

Posts: 1714275275

View Profile Personal Message (Offline)

Ignore
1714275275
Reply with quote  #2

1714275275
Report to moderator
1714275275
Hero Member
*
Offline Offline

Posts: 1714275275

View Profile Personal Message (Offline)

Ignore
1714275275
Reply with quote  #2

1714275275
Report to moderator
1714275275
Hero Member
*
Offline Offline

Posts: 1714275275

View Profile Personal Message (Offline)

Ignore
1714275275
Reply with quote  #2

1714275275
Report to moderator
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
September 18, 2016, 10:47:06 AM
 #2082

This project is dead? wallet not's work... right?

No, this project is not dead, if you follow us on GitHub you will see what we are currently doing

Soooooooon...............
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
September 18, 2016, 10:48:43 AM
 #2083

This project is dead? wallet not's work... right?

Wallets ok just having a nightmare getting it built personally

Will you let me know if the above works?

Soooooooon...............
CryptoHobo
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
September 18, 2016, 10:57:37 AM
 #2084

This project is dead? wallet not's work... right?

Wallets ok just having a nightmare getting it built personally

Will you let me know if the above works?

Yep will do, thanks. I've got another 6 hours at work but will try when home
marcelocoin
Hero Member
*****
Offline Offline

Activity: 1085
Merit: 500


hi =D


View Profile WWW
September 18, 2016, 03:37:10 PM
 #2085

thx help EBK1000....
CryptoHobo
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
September 18, 2016, 06:32:04 PM
 #2086

This project is dead? wallet not's work... right?

Wallets ok just having a nightmare getting it built personally

Will you let me know if the above works?

gave same error!
Code:
/usr/bin/ld: cannot find -lsecp256k1
collect2: error: ld returned 1 exit status
Makefile:984: recipe for target 'mojocoin2.3.0.1' failed
make: *** [mojocoin2.3.0.1] Error 1

This is everything I've done:
Code:
git clone https://github.com/MojocoinV2/mojocoin
edited Makefile, added -lgmp to libs  //without this libgmp isnt found (thanks again dsutil)
cd mojocoin
chmod 775 src/leveldb/build_detect_platform
chmod +x src/leveldb/build_detect_platform
cd src/leveldb/
make libleveldb.a libmemenv.a  //without this leveldb.a &  libmemenv.a don't compile giving compilation error
cd ../secp256k1/
chmod +x ./autogen.sh
./autogen.sh
./configure --enable-module-recovery
make
commented out mojocoin.pro#L213
cd ../..
qmake
make

EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
September 18, 2016, 08:13:50 PM
 #2087

This project is dead? wallet not's work... right?

Wallets ok just having a nightmare getting it built personally

Will you let me know if the above works?

gave same error!
Code:
/usr/bin/ld: cannot find -lsecp256k1
collect2: error: ld returned 1 exit status
Makefile:984: recipe for target 'mojocoin2.3.0.1' failed
make: *** [mojocoin2.3.0.1] Error 1

This is everything I've done:
Code:
git clone https://github.com/MojocoinV2/mojocoin
edited Makefile, added -lgmp to libs  //without this libgmp isnt found (thanks again dsutil)
cd mojocoin
chmod 775 src/leveldb/build_detect_platform
chmod +x src/leveldb/build_detect_platform
cd src/leveldb/
make libleveldb.a libmemenv.a  //without this leveldb.a &  libmemenv.a don't compile giving compilation error
cd ../secp256k1/
chmod +x ./autogen.sh
./autogen.sh
./configure --enable-module-recovery
make
commented out mojocoin.pro#L213
cd ../..
qmake
make



Did you build secp256k1 manually?

We will try to build and see if we get the same error

Soooooooon...............
CryptoHobo
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
September 18, 2016, 09:44:19 PM
 #2088

...

Did you build secp256k1 manually?

We will try to build and see if we get the same error

Fresh OS installation (Linux Mint 18 X64 Mate desktop) yesterday so no version of secp256k1 has been built for the system. Literally compiled a few wallets got to Mojocoin been stuck since, the only wallet compiled that also has an secp256k1 folder in the source is Syndicate and that compiled without issue with the standard:
chmod 775 src/leveldb/build_detect_platform
chmod +x src/leveldb/build_detect_platform
qmake
make
bumbacoin
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
September 19, 2016, 04:27:34 AM
Last edit: September 19, 2016, 04:41:34 AM by bumbacoin
 #2089

Morning guys,

yesterday i did a fresh install of mint on my staking box built wallets for 1337, Espers, Syndicate & OKCash without issues, still failing to compile mojocoin though current error I'm getting:

Code:
/usr/bin/ld: cannot find -lsecp256k1
collect2: error: ld returned 1 exit status
Makefile:984: recipe for target 'mojocoin2.3.0.1' failed
make: *** [mojocoin2.3.0.1] Error 1

Syndicate also has secp256k1 in the src folder and built without any issues, any advice?




i had similar probs with OSX, i think it has to do with the library not being a system wide install Huh

try commenting out
https://github.com/MojocoinV2/mojocoin/blob/master/mojocoin.pro#L746
Code:
#LIBS += -lsecp256k1

if it still tries to make secp256 you might need to comment that bit too.

Code:
#Build Secp256k1
INCLUDEPATH += src/secp256k1/include
LIBS += $$PWD/src/secp256k1/src/libsecp256k1_la-secp256k1.o
#!win32 {
    # we use QMAKE_CXXFLAGS_RELEASE even without RELEASE=1 because we use RELEASE to indicate linking preferences not -O preferences
 #   gensecp256k1.commands = cd $$PWD/src/secp256k1 && ./autogen.sh && ./configure --enable-module-recovery && CC=$$QMAKE_CC CXX=$$QMAKE_CXX $(MAKE) OPT=\"$$QMAKE_CXXFLAGS $$QMAKE_CXXFLAGS_RELEASE\"
#}
#gensecp256k1.target = $$PWD/src/secp256k1/src/libsecp256k1_la-secp256k1.o
#gensecp256k1.depends = FORCE
#PRE_TARGETDEPS += $$PWD/src/secp256k1/src/libsecp256k1_la-secp256k1.o
#QMAKE_EXTRA_TARGETS += gensecp256k1

# Gross ugly hack that depends on qmake internals, unfortunately there is no other way to do it.
#QMAKE_CLEAN += $$PWD/src/secp256k1/src/libsecp256k1_la-secp256k1.o; cd $$PWD/src/secp256k1; $(MAKE) clean


edit
oh i see ebk1000 suggested commenting out the  gensecpetc. line above Smiley

heh and you have to be careful doing a system install of secp256k1, there are a few incompatible versions floating around in different coins and they have no versioning to tell wtf is going on. lol

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
Fuzzbawls
Hero Member
*****
Offline Offline

Activity: 750
Merit: 500



View Profile
September 19, 2016, 04:47:03 AM
 #2090

Morning guys,

yesterday i did a fresh install of mint on my staking box built wallets for 1337, Espers, Syndicate & OKCash without issues, still failing to compile mojocoin though current error I'm getting:

Code:
/usr/bin/ld: cannot find -lsecp256k1
collect2: error: ld returned 1 exit status
Makefile:984: recipe for target 'mojocoin2.3.0.1' failed
make: *** [mojocoin2.3.0.1] Error 1

Syndicate also has secp256k1 in the src folder and built without any issues, any advice?




i had similar probs with OSX, i think it has to do with the library not being a system wide install Huh

try commenting out
https://github.com/MojocoinV2/mojocoin/blob/master/mojocoin.pro#L746
Code:
#LIBS += -lsecp256k1

if it still tries to make secp256 you might need to comment that bit too.

Code:
#Build Secp256k1
INCLUDEPATH += src/secp256k1/include
LIBS += $$PWD/src/secp256k1/src/libsecp256k1_la-secp256k1.o
#!win32 {
    # we use QMAKE_CXXFLAGS_RELEASE even without RELEASE=1 because we use RELEASE to indicate linking preferences not -O preferences
 #   gensecp256k1.commands = cd $$PWD/src/secp256k1 && ./autogen.sh && ./configure --enable-module-recovery && CC=$$QMAKE_CC CXX=$$QMAKE_CXX $(MAKE) OPT=\"$$QMAKE_CXXFLAGS $$QMAKE_CXXFLAGS_RELEASE\"
#}
#gensecp256k1.target = $$PWD/src/secp256k1/src/libsecp256k1_la-secp256k1.o
#gensecp256k1.depends = FORCE
#PRE_TARGETDEPS += $$PWD/src/secp256k1/src/libsecp256k1_la-secp256k1.o
#QMAKE_EXTRA_TARGETS += gensecp256k1

# Gross ugly hack that depends on qmake internals, unfortunately there is no other way to do it.
#QMAKE_CLEAN += $$PWD/src/secp256k1/src/libsecp256k1_la-secp256k1.o; cd $$PWD/src/secp256k1; $(MAKE) clean


edit
oh i see ebk1000 suggested commenting out the  gensecpetc. line above Smiley

heh and you have to be careful doing a system install of secp256k1, there are a few incompatible versions floating around in different coins and they have no versioning to tell wtf is going on. lol

the secp256k1 source bundled in the repository does work...instead of excluding it and/or bypassing it with a system provided library, the better solution would be to fix the wallet's build scripts to properly take into account the version that is included in-tree.
yusyus
Hero Member
*****
Offline Offline

Activity: 495
Merit: 500


View Profile
September 20, 2016, 10:03:49 AM
 #2091

When will be new version wallet ready with protocol 90001 only?
Thanks
drays
Legendary
*
Offline Offline

Activity: 2520
Merit: 1073


View Profile
September 20, 2016, 11:03:02 AM
 #2092

The MOJO wallet on livecoin.net is down for at least several days... Anyone knows why? Is it known problem, should I contact them, or there is somebody already working to fix this? Thats the main MOJO exchange currently, so its important to keep it running...

... this space is not for rent ...
yusyus
Hero Member
*****
Offline Offline

Activity: 495
Merit: 500


View Profile
September 20, 2016, 01:06:16 PM
 #2093

This info on livecoin.net just now:

Exchange is undergoing scheduled maintenance!
Programmers are arduously working on the update, but hardly get it done in less than an hour. Sorry for inconvenience, we don't like it too . And don't worry, your orders and funds are in safe.
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
September 20, 2016, 04:27:08 PM
 #2094

This info on livecoin.net just now:

Exchange is undergoing scheduled maintenance!
Programmers are arduously working on the update, but hardly get it done in less than an hour. Sorry for inconvenience, we don't like it too . And don't worry, your orders and funds are in safe.

Livecoin has a technical issue with the Mojo wallet and we are working to fix it. Hopefully it should be resolved today at some point. We are also working to fix the connection issues and we think we have found that it is caused by different versions of OpenSSL, so we will build new binaries with a slightly older OpenSSL and that should solve any connection issues. The Livecoin issue is being worked on. Sorry about few updates but work is happening...

Soooooooon...............
dsutil
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
September 20, 2016, 08:38:08 PM
 #2095

This info on livecoin.net just now:

Exchange is undergoing scheduled maintenance!
Programmers are arduously working on the update, but hardly get it done in less than an hour. Sorry for inconvenience, we don't like it too . And don't worry, your orders and funds are in safe.

Livecoin has a technical issue with the Mojo wallet and we are working to fix it. Hopefully it should be resolved today at some point. We are also working to fix the connection issues and we think we have found that it is caused by different versions of OpenSSL, so we will build new binaries with a slightly older OpenSSL and that should solve any connection issues. The Livecoin issue is being worked on. Sorry about few updates but work is happening...

Thank you for your work. Can you tell us, what version of OpenSSL we will have to use to compile from source?
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
September 20, 2016, 10:06:27 PM
 #2096

This info on livecoin.net just now:

Exchange is undergoing scheduled maintenance!
Programmers are arduously working on the update, but hardly get it done in less than an hour. Sorry for inconvenience, we don't like it too . And don't worry, your orders and funds are in safe.

Livecoin has a technical issue with the Mojo wallet and we are working to fix it. Hopefully it should be resolved today at some point. We are also working to fix the connection issues and we think we have found that it is caused by different versions of OpenSSL, so we will build new binaries with a slightly older OpenSSL and that should solve any connection issues. The Livecoin issue is being worked on. Sorry about few updates but work is happening...

Thank you for your work. Can you tell us, what version of OpenSSL we will have to use to compile from source?

We are trying to work it out. There will be an update tomorrow at some point. Just be patient.

Soooooooon...............
kripteka
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500


View Profile
September 21, 2016, 05:36:20 AM
 #2097

Does new wallet 90001 done? I can not withdraw MOJO from livecoin, I want to POS. POS process is working fine now?
mxnsch
Sr. Member
****
Offline Offline

Activity: 471
Merit: 252



View Profile
September 21, 2016, 07:59:46 AM
 #2098

Does new wallet 90001 done? I can not withdraw MOJO from livecoin, I want to POS. POS process is working fine now?
I am staking for 3 weeks with no issues.

██  ███  nope ██  ███
hagie
Hero Member
*****
Offline Offline

Activity: 792
Merit: 501



View Profile
September 21, 2016, 01:18:35 PM
 #2099

The Coin is dying on livecoin. It's time to move forward and give us some goals and a roadmap of the coin and start marketing. With 61 sat the coins reaches a critical low.

My 2 Mojitos ...

regards

dsutil
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
September 21, 2016, 03:05:18 PM
 #2100

The Coin is dying on livecoin. It's time to move forward and give us some goals and a roadmap of the coin and start marketing. With 61 sat the coins reaches a critical low.

My 2 Mojitos ...

regards



I think that the principal problem at this moment is that the mojocoin wallet on livecoin isn't working.... So Mojocoin can't be withdrawed or deposit on livecoin :-(
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 »
  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!