Bitcoin Forum
June 28, 2024, 10:08:50 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2]
21  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AXIOM] CPU Only AxiomMemHash + SHABAL-256 - Schnorr Sigs - Ongoing POW - DPOS on: July 27, 2015, 12:58:18 AM
Word on the street is that Taylor Swift is mining some AXIOM.



22  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AXIOM] CPU Only AxiomHash AXH + SHABAL-256 - Schnorr Sigs - Ongoing POW - DPOS on: July 26, 2015, 11:54:44 AM
gen=1 doesn't work as well. I think additional miner is needed obviously ...

in console: setgenerate true #

# = cores
23  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AXIOM] CPU Only AxiomHash AXH + SHABAL-256 - Schnorr Sigs - Ongoing POW - DPOS on: July 26, 2015, 08:57:46 AM
WTB 10k AXIOM for staking  Grin
24  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AXIOM] CPU Only AxiomHash AXH + SHABAL-256 - Schnorr Sigs - Ongoing POW - DPOS on: July 26, 2015, 08:04:48 AM
how can I check if I am on the correct chain?

Is this good:




Its good you can check

http://e.axiomcoin.xyz/
25  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AXIOM] CPU Only AxiomHash AXH + SHABAL-256 - Schnorr Sigs - Ongoing POW - DPOS on: July 26, 2015, 07:43:52 AM
Blocks are coming much more smoothly now  Cool
26  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AXIOM] Axiom - CPU AxiomHash AXH + SHABAL-256 - Schnorr Sigs - Launch Now on: July 26, 2015, 05:53:22 AM
Ubuntu 14.04 LTS; I made and installed the secp256 thing from the specified git repo, as I had errors trying to compile without doing so.

However, even after installing that, I still cannot compile (I used "make USE_UPNP= -f makefile.unix axiomd").

What is the problem, it looks almost as if you are trying to compile your own copy of the secp thing in a subdirectory?

Code:
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/markm/src/Cryptocoins/axiom-git/src -I/home/markm/src/Cryptocoins/axiom-git/src/obj -I/home/markm/src/Cryptocoins/axiom-git/src/secp256k1/include -I/home/markm/src/Cryptocoins/axiom-git/src/secp256k1/src -DENABLE_WALLET -I/home/markm/src/Cryptocoins/axiom-git/src/leveldb/include -I/home/markm/src/Cryptocoins/axiom-git/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -fpermissive -MMD -MF obj/secp256k1/src/secp256k1.d -o obj/secp256k1/src/secp256k1.o secp256k1/src/secp256k1.c
In file included from secp256k1/src/secp256k1.c:18:0:
secp256k1/src/ecmult_impl.h: In function ‘void secp256k1_ecmult_odd_multiples_table_storage_var(int, secp256k1_ge_storage_t*, const secp256k1_gej_t*)’:
secp256k1/src/ecmult_impl.h:96:71: warning: invalid conversion from ‘void*’ to ‘secp256k1_gej_t*’ [-fpermissive]
     secp256k1_gej_t *prej = checked_malloc(sizeof(secp256k1_gej_t) * n);
                                                                       ^
secp256k1/src/ecmult_impl.h:97:69: warning: invalid conversion from ‘void*’ to ‘secp256k1_ge_t*’ [-fpermissive]
     secp256k1_ge_t *prea = checked_malloc(sizeof(secp256k1_ge_t) * n);
                                                                     ^
secp256k1/src/ecmult_impl.h:98:67: warning: invalid conversion from ‘void*’ to ‘secp256k1_fe_t*’ [-fpermissive]
     secp256k1_fe_t *zr = checked_malloc(sizeof(secp256k1_fe_t) * n);
                                                                   ^
secp256k1/src/secp256k1.c: At global scope:
secp256k1/src/secp256k1.c:460:48: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
 static char *secp256k1_schnorr_message_tweak = "secp256k1-Schnorr-SHA256";
                                                ^
In file included from secp256k1/src/field_impl.h:17:0,
                 from secp256k1/src/secp256k1.c:15:
secp256k1/src/field_10x26_impl.h:44:13: warning: ‘void secp256k1_fe_verify(const secp256k1_fe_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_fe_verify(const secp256k1_fe_t *a) {
             ^
In file included from secp256k1/src/secp256k1.c:17:0:g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/markm/src/Cryptocoins/axiom-git/src -I/home/markm/src/Cryptocoins/axiom-git/src/obj -I/home/markm/src/Cryptocoins/axiom-git/src/secp256k1/include -I/home/markm/src/Cryptocoins/axiom-git/src/secp256k1/src -DENABLE_WALLET -I/home/markm/src/Cryptocoins/axiom-git/src/leveldb/include -I/home/markm/src/Cryptocoins/axiom-git/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -fpermissive -MMD -MF obj/secp256k1/src/secp256k1.d -o obj/secp256k1/src/secp256k1.o secp256k1/src/secp256k1.c
In file included from secp256k1/src/secp256k1.c:18:0:
secp256k1/src/ecmult_impl.h: In function ‘void secp256k1_ecmult_odd_multiples_table_storage_var(int, secp256k1_ge_storage_t*, const secp256k1_gej_t*)’:
secp256k1/src/ecmult_impl.h:96:71: warning: invalid conversion from ‘void*’ to ‘secp256k1_gej_t*’ [-fpermissive]
     secp256k1_gej_t *prej = checked_malloc(sizeof(secp256k1_gej_t) * n);
                                                                       ^
secp256k1/src/ecmult_impl.h:97:69: warning: invalid conversion from ‘void*’ to ‘secp256k1_ge_t*’ [-fpermissive]
     secp256k1_ge_t *prea = checked_malloc(sizeof(secp256k1_ge_t) * n);
                                                                     ^
secp256k1/src/ecmult_impl.h:98:67: warning: invalid conversion from ‘void*’ to ‘secp256k1_fe_t*’ [-fpermissive]
     secp256k1_fe_t *zr = checked_malloc(sizeof(secp256k1_fe_t) * n);
                                                                   ^
secp256k1/src/secp256k1.c: At global scope:
secp256k1/src/secp256k1.c:460:48: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
 static char *secp256k1_schnorr_message_tweak = "secp256k1-Schnorr-SHA256";
                                                ^
In file included from secp256k1/src/field_impl.h:17:0,
                 from secp256k1/src/secp256k1.c:15:
secp256k1/src/field_10x26_impl.h:44:13: warning: ‘void secp256k1_fe_verify(const secp256k1_fe_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_fe_verify(const secp256k1_fe_t *a) {
             ^
In file included from secp256k1/src/secp256k1.c:17:0:
secp256k1/src/group_impl.h:36:13: warning: ‘void secp256k1_ge_set_infinity(secp256k1_ge_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_ge_set_infinity(secp256k1_ge_t *r) {
             ^
In file included from secp256k1/src/secp256k1.c:17:0:
secp256k1/src/group_impl.h:161:13: warning: ‘void secp256k1_gej_set_xy(secp256k1_gej_t*, const secp256k1_fe_t*, const secp256k1_fe_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_gej_set_xy(secp256k1_gej_t *r, const secp256k1_fe_t *x, const secp256k1_fe_t *y) {
             ^
secp256k1/src/group_impl.h:227:12: warning: ‘int secp256k1_gej_is_valid_var(const secp256k1_gej_t*)’ defined but not used [-Wunused-function]
 static int secp256k1_gej_is_valid_var(const secp256k1_gej_t *a) {
            ^
secp256k1/src/secp256k1.c:637:1: fatal error: opening dependency file obj/secp256k1/src/secp256k1.d: No such file or directory
 }
 ^
compilation terminated.
make: *** [obj/secp256k1/src/secp256k1.o] Error 1
secp256k1/src/group_impl.h:36:13: warning: ‘void secp256k1_ge_set_infinity(secp256k1_ge_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_ge_set_infinity(secp256k1_ge_t *r) {
             ^
In file included from secp256k1/src/secp256k1.c:17:0:
secp256k1/src/group_impl.h:161:13: warning: ‘void secp256k1_gej_set_xy(secp256k1_gej_t*, const secp256k1_fe_t*, const secp256k1_fe_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_gej_set_xy(secp256k1_gej_t *r, const secp256k1_fe_t *x, const secp256k1_fe_t *y) {
             ^
secp256k1/src/group_impl.h:227:12: warning: ‘int secp256k1_gej_is_valid_var(const secp256k1_gej_t*)’ defined but not used [-Wunused-function]
 static int secp256k1_gej_is_valid_var(const secp256k1_gej_t *a) {
            ^
secp256k1/src/secp256k1.c:637:1: fatal error: opening dependency file obj/secp256k1/src/secp256k1.d: No such file or directory
 }g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/markm/src/Cryptocoins/axiom-git/src -I/home/markm/src/Cryptocoins/axiom-git/src/obj -I/home/markm/src/Cryptocoins/axiom-git/src/secp256k1/include -I/home/markm/src/Cryptocoins/axiom-git/src/secp256k1/src -DENABLE_WALLET -I/home/markm/src/Cryptocoins/axiom-git/src/leveldb/include -I/home/markm/src/Cryptocoins/axiom-git/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -fpermissive -MMD -MF obj/secp256k1/src/secp256k1.d -o obj/secp256k1/src/secp256k1.o secp256k1/src/secp256k1.c
In file included from secp256k1/src/secp256k1.c:18:0:
secp256k1/src/ecmult_impl.h: In function ‘void secp256k1_ecmult_odd_multiples_table_storage_var(int, secp256k1_ge_storage_t*, const secp256k1_gej_t*)’:
secp256k1/src/ecmult_impl.h:96:71: warning: invalid conversion from ‘void*’ to ‘secp256k1_gej_t*’ [-fpermissive]
     secp256k1_gej_t *prej = checked_malloc(sizeof(secp256k1_gej_t) * n);
                                                                       ^
secp256k1/src/ecmult_impl.h:97:69: warning: invalid conversion from ‘void*’ to ‘secp256k1_ge_t*’ [-fpermissive]
     secp256k1_ge_t *prea = checked_malloc(sizeof(secp256k1_ge_t) * n);
                                                                     ^
secp256k1/src/ecmult_impl.h:98:67: warning: invalid conversion from ‘void*’ to ‘secp256k1_fe_t*’ [-fpermissive]
     secp256k1_fe_t *zr = checked_malloc(sizeof(secp256k1_fe_t) * n);
                                                                   ^
secp256k1/src/secp256k1.c: At global scope:
secp256k1/src/secp256k1.c:460:48: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
 static char *secp256k1_schnorr_message_tweak = "secp256k1-Schnorr-SHA256";
                                                ^
In file included from secp256k1/src/field_impl.h:17:0,
                 from secp256k1/src/secp256k1.c:15:
secp256k1/src/field_10x26_impl.h:44:13: warning: ‘void secp256k1_fe_verify(const secp256k1_fe_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_fe_verify(const secp256k1_fe_t *a) {
             ^
In file included from secp256k1/src/secp256k1.c:17:0:
secp256k1/src/group_impl.h:36:13: warning: ‘void secp256k1_ge_set_infinity(secp256k1_ge_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_ge_set_infinity(secp256k1_ge_t *r) {
             ^
In file included from secp256k1/src/secp256k1.c:17:0:
secp256k1/src/group_impl.h:161:13: warning: ‘void secp256k1_gej_set_xy(secp256k1_gej_t*, const secp256k1_fe_t*, const secp256k1_fe_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_gej_set_xy(secp256k1_gej_t *r, const secp256k1_fe_t *x, const secp256k1_fe_t *y) {
             ^
secp256k1/src/group_impl.h:227:12: warning: ‘int secp256k1_gej_is_valid_var(const secp256k1_gej_t*)’ defined but not used [-Wunused-function]
 static int secp256k1_gej_is_valid_var(const secp256k1_gej_t *a) {
            ^
secp256k1/src/secp256k1.c:637:1: fatal error: opening dependency file obj/secp256k1/src/secp256k1.d: No such file or directory
 }
 ^
compilation terminated.
make: *** [obj/secp256k1/src/secp256k1.o] Error 1
 ^
compilation terminated.
make: *** [obj/secp256k1/src/secp256k1.o] Error 1

-MarkM-


Dev needs to add directories.

For now,

mkdir src/obj/secp256k1
mkdir src/obj/secp256k1


You also need:

chmod +x src/leveldb/build_detect_platform


Now you can compile Smiley
27  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MDT] Midnight | BMW-256, 1-Click Nodes, Ongoing POW, POS [MODDED] on: July 21, 2015, 10:17:30 AM
yep, look like he was (a bit too much) informed about this coin... before the launch
he follows a lot the new coins and launches...

Me ?

Nope, I wasn't, but it was a good exercise and fun getting Pool and CPU miner (both for free btw) ready quite fast.

Btw i wasn't informed about octane too, but that is what pool ops are doing.. creating pools Smiley

Ty for the pools, not many pool ops can do this incipient CPU coin and miner.

I aurally and visually perceived this coin has a prominent dev and he is waiting in the shadows quietly to buy coins and then later show us his art and code adeptness and exhibiting us the moon.

I will keep a vigorous ocular perceiver on this project.
Pages: « 1 [2]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!