Search content
Sort by

Showing 8 of 8 results by Nanashi74
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [QCN] QuazarCoin | Full privacy&data protection | Egalitarian PoW
by
Nanashi74
on 11/12/2015, 13:01:53 UTC
COMMUNITY PROPOSAL FOR RESURRECTING QUAZARCOIN

If anyone else is interested in resurrecting this coin please follow the instructions bellow and start solo-mining, with enough hashrate QCN will fork and will be on pair with Bytecoin latest code but with a much better emission curve, coin re-branding and exchange listing could follow.


Hello,
I added support for QuazarCoin in Forknote. It will give you a daemon and simplewallet with equivalent version of Bytecoin 1.0.5.1.
To use it, download the Forknote binaries or compile them. More info here:
https://bitcointalk.org/index.php?topic=1079306.0
Download the configuration file for QuazarCoin and save it in the 'configs' folder of Forknote:
https://github.com/forknote/configs/blob/master/quazarcoin.conf

Daemon start:
forknoted.exe --config-file configs\quazarcoin.conf
./forknoted --config-file configs/quazarcoin.conf

Simplewallet start:
simplewallet.exe --config-file configs\quazarcoin.conf
./simplewallet --config-file configs/quazarcoin.conf

How to transfer your old wallet?
Copy your .keys file to the Forknote folder. Open it with simplewallet.


If anyone with a pool want to get behind the idea we can all mine together until the fork happens.
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] Forknote - create your own Cryptonote network
by
Nanashi74
on 11/12/2015, 12:49:12 UTC
All dependencies are OK, heres the error msg: http://pastebin.com/mLc3fWUv

Thanks, hope we can resurrect QCN with your project.
There was a problem indeed which is now fixed. "git pull" and it should work fine.
We have a configuration for QCN already. The real problem is to convince and coordinate all the existing pools and users to move to Forknote, since this will require a hardfork.

perfect!

QCN is an abandoned cryptonote note, it has no dev and needs improvement, its ideal for testing if forknote could take over the network, how much of the hashrate is necessary?

thanks.

COMMUNITY PROPOSAL FOR RESURRECTING QUAZARCOIN

If anyone else is interested in resurrecting this coin please follow the instructions bellow and start solo-mining, with enough hashrate QCN will fork and will be on pair with Bytecoin latest code but with a much better emission curve, coin re-branding and exchange listing could follow.


Hello,
I added support for QuazarCoin in Forknote. It will give you a daemon and simplewallet with equivalent version of Bytecoin 1.0.5.1.
To use it, download the Forknote binaries or compile them. More info here:
https://bitcointalk.org/index.php?topic=1079306.0
Download the configuration file for QuazarCoin and save it in the 'configs' folder of Forknote:
https://github.com/forknote/configs/blob/master/quazarcoin.conf

Daemon start:
forknoted.exe --config-file configs\quazarcoin.conf
./forknoted --config-file configs/quazarcoin.conf

Simplewallet start:
simplewallet.exe --config-file configs\quazarcoin.conf
./simplewallet --config-file configs/quazarcoin.conf

How to transfer your old wallet?
Copy your .keys file to the Forknote folder. Open it with simplewallet.


If anyone with a pool want to get behind the idea we can all mine together until the fork happens.
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] Forknote - create your own Cryptonote network
by
Nanashi74
on 09/12/2015, 13:23:47 UTC
All dependencies are OK, heres the error msg: http://pastebin.com/mLc3fWUv

Thanks, hope we can resurrect QCN with your project.
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] Forknote - create your own Cryptonote network
by
Nanashi74
on 08/12/2015, 18:26:30 UTC
Hi, I'm having problems compiling the last version on Ubuntu 14.04. I can compile all cryptonote coins with no problem is there any specific dependency for Forknote? Thanks for the good work.
Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released
by
Nanashi74
on 23/09/2015, 17:45:24 UTC
Yeah, I screwed up the build system. You can change the part that says

Code:
 if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9.0))
    set(CMAKE_AR "gcc-ar")
    set(CMAKE_RANLIB "gcc-ranlib")
  else()
    set(CMAKE_AR "llvm-ar")
    set(CMAKE_RANLIB "llvm-ranlib")
  endif()
to
Code:
 if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9.0))
    set(CMAKE_AR "gcc-ar")
    set(CMAKE_RANLIB "gcc-ranlib")
  elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
    set(CMAKE_AR "llvm-ar")
    set(CMAKE_RANLIB "llvm-ranlib")
  endif()

in CMakeLists.txt.

If you were trying to test the db tree, instead of changing the CMakeLists.txt file, just run
Code:
git checkout db
and redo the cmake line and make again and it should work. My screw ups aren't in that branch.

Thanks, problem solved.
Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released
by
Nanashi74
on 22/09/2015, 02:27:28 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released
by
Nanashi74
on 21/09/2015, 19:53:33 UTC
getting the following errors when compiling from git:

Code:
Linking CXX static library libcommon.a
Error running link command: No such file or directory
make[3]: *** [src/libcommon.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/common.dir/all] Error 2
Linking CXX static library libcrypto.a
Error running link command: No such file or directory
make[3]: *** [src/libcrypto.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/crypto.dir/all] Error 2
make[2]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make: *** [build-release] Error 2

 Huh

mint 17.2

Did you install build-essential first?

yes and I can compile other cryptonote coins with no problem
Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released
by
Nanashi74
on 21/09/2015, 19:31:21 UTC
getting the following errors when compiling from git:

Code:
Linking CXX static library libcommon.a
Error running link command: No such file or directory
make[3]: *** [src/libcommon.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/common.dir/all] Error 2
Linking CXX static library libcrypto.a
Error running link command: No such file or directory
make[3]: *** [src/libcrypto.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/crypto.dir/all] Error 2
make[2]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make: *** [build-release] Error 2

 Huh

mint 17.2