Pages:
Author

Topic: [SCRT] | X11 PoW + PoS | Secret Coin for Secret Games by TEAM SECRET - page 15. (Read 62724 times)

legendary
Activity: 1512
Merit: 1125
Swapzone
Good mining today=))


Welcome "0n0t0le"!

Glad to see you here. Your invitation to join us on Slack was sent!  Wink

Thanks!
Thank for invitation=)
entered into a secret chat =)
sr. member
Activity: 592
Merit: 250
Good mining today=))


Welcome "0n0t0le"!

Glad to see you here. Your invitation to join us on Slack was sent!  Wink

Thanks!
sr. member
Activity: 592
Merit: 250
Secret Turkish Version Available



OP updated
legendary
Activity: 1512
Merit: 1125
Swapzone
Good mining today=))
sr. member
Activity: 592
Merit: 250
Where is the new block explorer?

New Block Explorer Available



OP updated

Enjoy!  Wink

Just in front of your eyes or in the OP!  Cheesy

newbie
Activity: 13
Merit: 0
Where is the new block explorer?
newbie
Activity: 4
Merit: 0
Your missing db_cxx.h So do the following:

Code:
sudo apt-get install libdb++-dev

Argh, too long ago since I compiled something... And the last thing was the kernel, so didn't have to struggle with much dependencies. Thank you.
It could be added to doc/build-unix.txt (Dependency Build Instructions).

Compiling right now (on a slow machine)... I will post again just if it's unsuccessful. Otherwise I'm going to leave an edit note here. I don't want to spam. Cheesy

Okay, it should work. Ill take a not on that too. Thank you!
Nope, it doesn't. Argh, I'm a bit off today, sorry, my fault.
sr. member
Activity: 592
Merit: 250

New Block Explorer Available



OP updated

Enjoy!  Wink
sr. member
Activity: 592
Merit: 250
Your missing db_cxx.h So do the following:

Code:
sudo apt-get install libdb++-dev

Argh, too long ago since I compiled something... And the last thing was the kernel, so didn't have to struggle with much dependencies. Thank you.
It could be added to doc/build-unix.txt (Dependency Build Instructions).

Compiling right now (on a slow machine)... I will post again just if it's unsuccessful. Otherwise I'm going to leave an edit note here. I don't want to spam. Cheesy

Okay, it should work. Ill take a not on that too. Thank you!
newbie
Activity: 4
Merit: 0
Your missing db_cxx.h So do the following:

Code:
sudo apt-get install libdb++-dev

Argh, too long ago since I compiled something... And the last thing was the kernel, so didn't have to struggle with much dependencies. Thank you.
It could be added to doc/build-unix.txt (Dependency Build Instructions).

Compiling right now (on a slow machine)... I will post again just if it's unsuccessful. Otherwise I'm going to leave an edit note here. I don't want to spam. Cheesy
sr. member
Activity: 592
Merit: 250
I have some issues to build SecretCoind on Debian Linux. (Output shortened)

Code:
make -f makefile.unix

groestl.c: At global scope:
groestl.c:3122:1: fatal error: opening dependency file obj/groestl.d: No such file or directory
 }
 ^
compilation terminated.
makefile.unix:191: recipe for target 'obj/groestl.o' failed
make: *** [obj/groestl.o] Error 1

/src/obj directory was missing, no big deal.

The next error however is critical for me.

Code:
mkdir obj
make -f makefile.unix

g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/opt/SecretCoin/src -I/opt/SecretCoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/opt/SecretCoin/src/leveldb/include -I/opt/SecretCoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/db.d -o obj/db.o db.cpp
In file included from db.cpp:6:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory
 #include
                    ^
compilation terminated.
makefile.unix:198: recipe for target 'obj/db.o' failed
make: *** [obj/db.o] Error 1


Hi lucky1!
One error at the time Wink

Your missing db_cxx.h So do the following:

Code:
sudo apt-get install libdb++-dev
newbie
Activity: 4
Merit: 0
I have some issues to build SecretCoind on Debian Linux. (Output shortened)

Code:
make -f makefile.unix

groestl.c: At global scope:
groestl.c:3122:1: fatal error: opening dependency file obj/groestl.d: No such file or directory
 }
 ^
compilation terminated.
makefile.unix:191: recipe for target 'obj/groestl.o' failed
make: *** [obj/groestl.o] Error 1

/src/obj directory was missing, no big deal.

The next error however is critical for me.

Code:
mkdir obj
make -f makefile.unix

g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/opt/SecretCoin/src -I/opt/SecretCoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/opt/SecretCoin/src/leveldb/include -I/opt/SecretCoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/db.d -o obj/db.o db.cpp
In file included from db.cpp:6:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory
 #include
                    ^
compilation terminated.
makefile.unix:198: recipe for target 'obj/db.o' failed
make: *** [obj/db.o] Error 1

Regardless if you create an empty db_cxx.h or remove that line from db.h, it doesn't work. So compilation can not continue without that file.

Code:
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/opt/SecretCoin/src -I/opt/SecretCoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/opt/SecretCoin/src/leveldb/include -I/opt/SecretCoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/db.d -o obj/db.o db.cpp
In file included from db.cpp:6:0:
db.h:45:5: error: 'DbEnv' does not name a type
     DbEnv dbenv;
     ^
db.h:47:27: error: 'Db' was not declared in this scope
     std::map mapDb;

There are several more errors, I shortened it for better readability.

It would be nice to have a working SecretCoind. Can someone or TeamSecret help me, please?
hero member
Activity: 824
Merit: 1000
Its the first time I saw the Italian thread so I clicked the English Flag that leads me here. The coin seem full of secrecy lol. I'm interested to know how much is the value of 1000 SCRT to USD, i don't see it after trying to google.
More or less 4$ right now for 1000 SCRT.
legendary
Activity: 2492
Merit: 1018
Its the first time I saw the Italian thread so I clicked the English Flag that leads me here. The coin seem full of secrecy lol. I'm interested to know how much is the value of 1000 SCRT to USD, i don't see it after trying to google.
sr. member
Activity: 592
Merit: 250
Secret Italian Version Available



OP updated

sr. member
Activity: 592
Merit: 250
on every coin same story, every time price drops, there is a newbie account posting that it cannot sync the wallet...

That sounds a new conspiracy theory.


Hm, thanks, it is strange. Because of some problems i removed the data folder and started to synchronize from block 1 on. But i still get the sign "no connections" :/

Did you place the config file back to the new data folder? Without it, the wallet does not find any nodes.

See SecretCoin.conf in the first post.

You can also move the data dir by passing the command parameter -datadir="path" to the executable. On Windows, you can do so by modifying the desktop or start menu link. On Mac, I don't know how to do it and in case of Linux you should be able to use the command line Wink.


Thanks for helping Lucky1!

Nice to see you here Wink
Join us on Slack!
Cheers!

 
hero member
Activity: 784
Merit: 1000
Pools Of Honor
on every coin same story, every time price drops, there is a newbie account posting that it cannot sync the wallet...
full member
Activity: 194
Merit: 100
Hm, thanks, it is strange. Because of some problems i removed the data folder and started to synchronize from block 1 on. But i still get the sign "no connections" :/
newbie
Activity: 4
Merit: 0
Hm, thanks, it is strange. Because of some problems i removed the data folder and started to synchronize from block 1 on. But i still get the sign "no connections" :/

Did you place the config file back to the new data folder? Without it, the wallet does not find any nodes.

See SecretCoin.conf in the first post.

You can also move the data dir by passing the command parameter -datadir="path" to the executable. On Windows, you can do so by modifying the desktop or start menu link. On Mac, I don't know how to do it and in case of Linux you should be able to use the command line Wink.
Pages:
Jump to: