Pages:
Author

Topic: [ANN]AXIS coin + - Hybrid - X13 - 6M. Android Ticker. MANDATORY WALLET! - page 31. (Read 99417 times)

member
Activity: 445
Merit: 10
Worlds Simplest Cryptocurrency Wallet
Error on compile wallet in debian

Code:
fugue.c: At global scope:
fugue.c:1207:1: fatal error: opening dependency file obj/fugue.d: No such file or directory

How can I fix it?

from inside src

Code:
mkdir obj

Thanks, that works Smiley
full member
Activity: 122
Merit: 100
Error on compile wallet in debian

Code:
fugue.c: At global scope:
fugue.c:1207:1: fatal error: opening dependency file obj/fugue.d: No such file or directory

How can I fix it?
All you have to do is:

Make a folder named "obj" in src directory


EDIT:

PiOfCube was faster, hehe

I'm the cat in that photo you posted... I evolved opposable digits just to use a mouse... well, beyond how I would normally use mice ;-)
newbie
Activity: 42
Merit: 0
Error on compile wallet in debian

Code:
fugue.c: At global scope:
fugue.c:1207:1: fatal error: opening dependency file obj/fugue.d: No such file or directory

How can I fix it?
All you have to do is:

Make a folder named "obj" in src directory


EDIT:

PiOfCube was faster, hehe
full member
Activity: 122
Merit: 100
Error on compile wallet in debian

Code:
fugue.c: At global scope:
fugue.c:1207:1: fatal error: opening dependency file obj/fugue.d: No such file or directory

How can I fix it?

from inside src

Code:
mkdir obj
member
Activity: 445
Merit: 10
Worlds Simplest Cryptocurrency Wallet
Error on compile wallet in debian

Code:
fugue.c: At global scope:
fugue.c:1207:1: fatal error: opening dependency file obj/fugue.d: No such file or directory

How can I fix it?
newbie
Activity: 42
Merit: 0
full member
Activity: 140
Merit: 100
OH MY GOD WE FOUND A WILD DEV! Grin
full member
Activity: 122
Merit: 100
IMPORTANT

MANDATORY UPDATE

Please update your wallets. We've done some fixes.
PoS stage will start from block 7500, instead of block 8000.


Backup your wallet.dat, just to be sure. Then download the new wallet, then just run it. Replace the wallet.dat file, and you're set to go!

Github is updated.

https://mega.co.nz/#!B5Ek2IqA!s5cxUwzg0_4PZhqJeuhxNG75USE624-7NK9F4yA0UMM


( Don't panic, everything is good Tongue Just a small update.)



"Hot" news is:

How about we release an app on google, a coin ticker? Smiley ( Yeah, now I'm hyping slowly, with actions. )

Can you clarify something, please?

Code:
if (IsProofOfWork() && nHeight > CUTOFF_POW_BLOCK)
          return DoS(100, error("AcceptBlock() : No proof-of-work allowed anymore (height = %d)", nHeight));

Code:
+	if (IsProofOfStake() && nHeight < POW_ON_BLOCK)
 +        return DoS(100, error("AcceptBlock() : Proof-of-stake not yet allowed (height = %d)", nHeight));
 +


Code:
 static const int CUTOFF_POW_BLOCK = 8640;
 +static const int POW_ON_BLOCK = 7500;

This is a very brief glance at the changes so I might be missing something but the logic in the code makes me wonder what is supposed to happen between blocks 7501 and 8639.

Of course.

PoS starts from block 7500.
PoW ends at block #8639 and we're passing in the phase of full PoS. Smiley


If you have any other questions, feel free to ask. Boring day at job, I'm logged here and willing to chat a bit.

Yeah, looks like it. Just making sure :-)

Thanks.
newbie
Activity: 42
Merit: 0
IMPORTANT

MANDATORY UPDATE

Please update your wallets. We've done some fixes.
PoS stage will start from block 7500, instead of block 8000.


Backup your wallet.dat, just to be sure. Then download the new wallet, then just run it. Replace the wallet.dat file, and you're set to go!

Github is updated.

https://mega.co.nz/#!B5Ek2IqA!s5cxUwzg0_4PZhqJeuhxNG75USE624-7NK9F4yA0UMM


( Don't panic, everything is good Tongue Just a small update.)



"Hot" news is:

How about we release an app on google, a coin ticker? Smiley ( Yeah, now I'm hyping slowly, with actions. )

Can you clarify something, please?

Code:
if (IsProofOfWork() && nHeight > CUTOFF_POW_BLOCK)
          return DoS(100, error("AcceptBlock() : No proof-of-work allowed anymore (height = %d)", nHeight));

Code:
+	if (IsProofOfStake() && nHeight < POW_ON_BLOCK)
 +        return DoS(100, error("AcceptBlock() : Proof-of-stake not yet allowed (height = %d)", nHeight));
 +


Code:
 static const int CUTOFF_POW_BLOCK = 8640;
 +static const int POW_ON_BLOCK = 7500;

This is a very brief glance at the changes so I might be missing something but the logic in the code makes me wonder what is supposed to happen between blocks 7501 and 8639.

Of course.

PoS starts from block 7500.
PoW ends at block #8639 and we're passing in the phase of full PoS. Smiley


If you have any other questions, feel free to ask. Boring day at job, I'm logged here and willing to chat a bit.
full member
Activity: 122
Merit: 100
IMPORTANT

MANDATORY UPDATE

Please update your wallets. We've done some fixes.
PoS stage will start from block 7500, instead of block 8000.


Backup your wallet.dat, just to be sure. Then download the new wallet, then just run it. Replace the wallet.dat file, and you're set to go!

Github is updated.

https://mega.co.nz/#!B5Ek2IqA!s5cxUwzg0_4PZhqJeuhxNG75USE624-7NK9F4yA0UMM


( Don't panic, everything is good Tongue Just a small update.)



"Hot" news is:

How about we release an app on google, a coin ticker? Smiley ( Yeah, now I'm hyping slowly, with actions. )

Can you clarify something, please?

Code:
if (IsProofOfWork() && nHeight > CUTOFF_POW_BLOCK)
          return DoS(100, error("AcceptBlock() : No proof-of-work allowed anymore (height = %d)", nHeight));

Code:
+	if (IsProofOfStake() && nHeight < POW_ON_BLOCK)
 +        return DoS(100, error("AcceptBlock() : Proof-of-stake not yet allowed (height = %d)", nHeight));
 +


Code:
 static const int CUTOFF_POW_BLOCK = 8640;
 +static const int POW_ON_BLOCK = 7500;

This is a very brief glance at the changes so I might be missing something but the logic in the code makes me wonder what is supposed to happen between blocks 7501 and 8639.
newbie
Activity: 42
Merit: 0
Like it Dev!

You guys know.. If I ever made a coin, I'd leave your asses in the dark for a few days after launching, slowly buying all of my own coin up while it hits rock bottom prices because of all your FUD. Tongue
We both, Mike and me ( Mike ) are busy people.

We'd like to hang here on the forum and chat with people, but that's kind of impossible, for another 2-3 weeks.
In between, we're working on AXIS. That's our priority in REAL LIFE right now. ( After our family, jobs )


@ThisWeeksCoin said yesterday: FUD is food.


Thank you Smiley

Everyone wants to be rich one day. The kids.

I am indeed rich. I have a kid. Smiley
sr. member
Activity: 338
Merit: 251
Like it Dev!

You guys know.. If I ever made a coin, I'd leave your asses in the dark for a few days after launching, slowly buying all of my own coin up while it hits rock bottom prices because of all your FUD. Tongue
newbie
Activity: 42
Merit: 0
IMPORTANT

MANDATORY UPDATE

Please update your wallets. We've done some fixes.
PoS stage will start from block 7500, instead of block 8000.


Backup your wallet.dat, just to be sure. Then download the new wallet, then just run it. Replace the wallet.dat file, and you're set to go!

Github is updated.

https://mega.co.nz/#!B5Ek2IqA!s5cxUwzg0_4PZhqJeuhxNG75USE624-7NK9F4yA0UMM


( Don't panic, everything is good Tongue Just a small update.)



"Hot" news is:

How about we release an app on google, a coin ticker? Smiley ( Yeah, now I'm hyping slowly, with actions. )
hero member
Activity: 525
Merit: 500
How many blocks total?
newbie
Activity: 42
Merit: 0
hi, dev, are u dumping the premine?
YES! RUN TO THE HILLS!

Dump the premine and get 1-2 btc? ummm.. What the heck is wrong with you people? Can't you just mine and not focus on FUD and other useless comments?

hi, dev, are u dumping the premine?

lol ya he's dumping it 40 coins at a time on bittrex, people are just distracted by the hype p'n d's and the text/sms feature on vrc...like other buddy said about the multipool dumps, if they've been mining us the expect another drop when they start selling, probably a big part of what has brought the price down already.

I'm try'n to make some btc in the trading game so I can buy up some more before pow ends

You'll be highly rewarded.


If I don't talk, it doesn't mean "I'm dumping the premine". If I have something important to say, I'll do so.
I have few important things to say, but not YET.


Keep speculating on how the dev is dumping. That's how people lose money in cryptos.
legendary
Activity: 952
Merit: 1001
Everyone wants to be rich one day. The kids.
legendary
Activity: 1190
Merit: 1000
Kaspa
so no hype, no innovation,and nothing new just waiting to die? its going to 1k soon, damn, where is the "action"?

sorry just a solid coin right now, from the sounds of it quite a bit of innovation in the code but that doesn't get the attention of the crypto ADD crowd like fancy untested features lol or sometimes just rumors of features... most of us seem to not want to be yet another coin just trying to blow smoke up peoples ass's all day.

lol it's only 6 days of mining people... how can you think a coin is waiting to die when it's still being born ?
member
Activity: 98
Merit: 10
no problem here. wait to buy at 1k  Wink Shocked
full member
Activity: 140
Merit: 100
so no hype, no innovation,and nothing new just waiting to die? its going to 1k soon, damn, where is the "action"?
legendary
Activity: 3248
Merit: 1070
Price keeps falling.  I keep buying.

you should let it fall to the ground before buying again
Pages:
Jump to: