haggis
|
|
May 17, 2014, 02:46:10 PM |
|
Trying to compile the latest wallet under linux. But I just get this: src/qt/overviewpage.cpp:16:33: fatal error: QNetworkAccessManager: File or directory not found #include <QNetworkAccessManager> ^ compilation terminated. make: *** [build/overviewpage.o] Error 1 Any help on this please? Open the coffeecoin-qt.pro file and remove the first character on the first line where it says: 'QT += core gui network', this should do the trick You mean the first line should read "T += core gui network"? That doesn't work either (and also makes no sense imho ). But thanks. Other suggestions? No before the 'Q' there was a strange a character in my case, after removing this it was OK so the line should read : QT += core gui network Ah ok. No, my file was already ok on this point. It seems like the file of a class cannot be found. If I grep over the sources I only find instanciations of the class but never a definition. This class is part of the Qt libraries ( QtNetwork ), are you building a Qt4 or a Qt5 version? Make sure you have the devel packages of Qt installed I'm using qmake-qt4. I also compiled dozens of other wallets which also use "QT += network" in their .pro file. So I doubt I'm missing anything, do I?
|
|
|
|
Watercooler
|
|
May 17, 2014, 02:54:09 PM |
|
Trying to compile the latest wallet under linux. But I just get this: src/qt/overviewpage.cpp:16:33: fatal error: QNetworkAccessManager: File or directory not found #include <QNetworkAccessManager> ^ compilation terminated. make: *** [build/overviewpage.o] Error 1 Any help on this please? Open the coffeecoin-qt.pro file and remove the first character on the first line where it says: 'QT += core gui network', this should do the trick You mean the first line should read "T += core gui network"? That doesn't work either (and also makes no sense imho ). But thanks. Other suggestions? No before the 'Q' there was a strange a character in my case, after removing this it was OK so the line should read : QT += core gui network Ah ok. No, my file was already ok on this point. It seems like the file of a class cannot be found. If I grep over the sources I only find instanciations of the class but never a definition. This class is part of the Qt libraries ( QtNetwork ), are you building a Qt4 or a Qt5 version? Make sure you have the devel packages of Qt installed I'm using qmake-qt4. I also compiled dozens of other wallets which also use "QT += network" in their .pro file. So I doubt I'm missing anything, do I? A quick grep on other wallets shows no usage of the QNetworkAccessManager class, I had exactly the same problem yesterday and here it was simply solved by removing the character which was in front of the 'QT += core gui network' line. I also compiled the Qt4 version
|
|
|
|
Watercooler
|
|
May 17, 2014, 02:56:26 PM |
|
Trying to compile the latest wallet under linux. But I just get this: src/qt/overviewpage.cpp:16:33: fatal error: QNetworkAccessManager: File or directory not found #include <QNetworkAccessManager> ^ compilation terminated. make: *** [build/overviewpage.o] Error 1 Any help on this please? Open the coffeecoin-qt.pro file and remove the first character on the first line where it says: 'QT += core gui network', this should do the trick You mean the first line should read "T += core gui network"? That doesn't work either (and also makes no sense imho ). But thanks. Other suggestions? No before the 'Q' there was a strange a character in my case, after removing this it was OK so the line should read : QT += core gui network Ah ok. No, my file was already ok on this point. It seems like the file of a class cannot be found. If I grep over the sources I only find instanciations of the class but never a definition. This class is part of the Qt libraries ( QtNetwork ), are you building a Qt4 or a Qt5 version? Make sure you have the devel packages of Qt installed I'm using qmake-qt4. I also compiled dozens of other wallets which also use "QT += network" in their .pro file. So I doubt I'm missing anything, do I? A quick grep on other wallets shows no usage of the QNetworkAccessManager class, I had exactly the same problem yesterday and here it was simply solved by removing the character which was in front of the 'QT += core gui network' line. I also compiled the Qt4 version Do you have a '/usr/include/QtNetwork' directory? The QNetworkAccessManager header file should be in there
|
|
|
|
haggis
|
|
May 17, 2014, 03:15:33 PM |
|
Trying to compile the latest wallet under linux. But I just get this: src/qt/overviewpage.cpp:16:33: fatal error: QNetworkAccessManager: File or directory not found #include <QNetworkAccessManager> ^ compilation terminated. make: *** [build/overviewpage.o] Error 1 Any help on this please? Open the coffeecoin-qt.pro file and remove the first character on the first line where it says: 'QT += core gui network', this should do the trick You mean the first line should read "T += core gui network"? That doesn't work either (and also makes no sense imho ). But thanks. Other suggestions? No before the 'Q' there was a strange a character in my case, after removing this it was OK so the line should read : QT += core gui network Ah ok. No, my file was already ok on this point. It seems like the file of a class cannot be found. If I grep over the sources I only find instanciations of the class but never a definition. This class is part of the Qt libraries ( QtNetwork ), are you building a Qt4 or a Qt5 version? Make sure you have the devel packages of Qt installed I'm using qmake-qt4. I also compiled dozens of other wallets which also use "QT += network" in their .pro file. So I doubt I'm missing anything, do I? A quick grep on other wallets shows no usage of the QNetworkAccessManager class, I had exactly the same problem yesterday and here it was simply solved by removing the character which was in front of the 'QT += core gui network' line. I also compiled the Qt4 version Do you have a '/usr/include/QtNetwork' directory? The QNetworkAccessManager header file should be in there There's a /usr/include/qt4/QtNetwork directory with the header file in it (qnetworkaccessmanager.h). So I appended this path to line 5 of the .pro file and now it seems to compile (still running). Thanks a lot! edit: cheered to soon lol. I'll investigate later as I have to leave now. build/overviewpage.o: In Funktion `OverviewPage::handleAdvsTimerUpdate()': overviewpage.cpp:(.text+0x1648): Nicht definierter Verweis auf `QNetworkRequest::QNetworkRequest(QUrl const&)' overviewpage.cpp:(.text+0x1654): Nicht definierter Verweis auf `QNetworkAccessManager::get(QNetworkRequest const&)' overviewpage.cpp:(.text+0x165c): Nicht definierter Verweis auf `QNetworkRequest::~QNetworkRequest()' overviewpage.cpp:(.text+0x1a5c): Nicht definierter Verweis auf `QNetworkRequest::~QNetworkRequest()' build/overviewpage.o: In Funktion `OverviewPage::handleLoadAdvsFinished(QNetworkReply*)': overviewpage.cpp:(.text+0x1d66): Nicht definierter Verweis auf `QNetworkReply::error() const' build/overviewpage.o: In Funktion `OverviewPage::OverviewPage(QWidget*)': overviewpage.cpp:(.text+0x2777): Nicht definierter Verweis auf `QNetworkAccessManager::QNetworkAccessManager(QObject*)' collect2: error: ld returned 1 exit status make: *** [coffeecoin-qt] Fehler 1
|
|
|
|
Watercooler
|
|
May 17, 2014, 03:29:53 PM |
|
Trying to compile the latest wallet under linux. But I just get this: src/qt/overviewpage.cpp:16:33: fatal error: QNetworkAccessManager: File or directory not found #include <QNetworkAccessManager> ^ compilation terminated. make: *** [build/overviewpage.o] Error 1 Any help on this please? Open the coffeecoin-qt.pro file and remove the first character on the first line where it says: 'QT += core gui network', this should do the trick You mean the first line should read "T += core gui network"? That doesn't work either (and also makes no sense imho ). But thanks. Other suggestions? No before the 'Q' there was a strange a character in my case, after removing this it was OK so the line should read : QT += core gui network Ah ok. No, my file was already ok on this point. It seems like the file of a class cannot be found. If I grep over the sources I only find instanciations of the class but never a definition. This class is part of the Qt libraries ( QtNetwork ), are you building a Qt4 or a Qt5 version? Make sure you have the devel packages of Qt installed I'm using qmake-qt4. I also compiled dozens of other wallets which also use "QT += network" in their .pro file. So I doubt I'm missing anything, do I? A quick grep on other wallets shows no usage of the QNetworkAccessManager class, I had exactly the same problem yesterday and here it was simply solved by removing the character which was in front of the 'QT += core gui network' line. I also compiled the Qt4 version Do you have a '/usr/include/QtNetwork' directory? The QNetworkAccessManager header file should be in there There's a /usr/include/qt4/QtNetwork directory with the header file in it (qnetworkaccessmanager.h). So I appended this path to line 5 of the .pro file and now it seems to compile (still running). Thanks a lot! edit: cheered to soon lol. I'll investigate later as I have to leave now. build/overviewpage.o: In Funktion `OverviewPage::handleAdvsTimerUpdate()': overviewpage.cpp:(.text+0x1648): Nicht definierter Verweis auf `QNetworkRequest::QNetworkRequest(QUrl const&)' overviewpage.cpp:(.text+0x1654): Nicht definierter Verweis auf `QNetworkAccessManager::get(QNetworkRequest const&)' overviewpage.cpp:(.text+0x165c): Nicht definierter Verweis auf `QNetworkRequest::~QNetworkRequest()' overviewpage.cpp:(.text+0x1a5c): Nicht definierter Verweis auf `QNetworkRequest::~QNetworkRequest()' build/overviewpage.o: In Funktion `OverviewPage::handleLoadAdvsFinished(QNetworkReply*)': overviewpage.cpp:(.text+0x1d66): Nicht definierter Verweis auf `QNetworkReply::error() const' build/overviewpage.o: In Funktion `OverviewPage::OverviewPage(QWidget*)': overviewpage.cpp:(.text+0x2777): Nicht definierter Verweis auf `QNetworkAccessManager::QNetworkAccessManager(QObject*)' collect2: error: ld returned 1 exit status make: *** [coffeecoin-qt] Fehler 1 Try this before running make: qmake "Qt+=network"
|
|
|
|
mana6
|
|
May 17, 2014, 03:35:42 PM |
|
the price is lower,so what can i do ?
|
|
|
|
marti
|
|
May 17, 2014, 03:39:06 PM |
|
voted on mintpal #530
|
|
|
|
lordoliver
Legendary
Offline
Activity: 1666
Merit: 1020
expect(brain).toHaveBeenUsed()
|
|
May 17, 2014, 03:53:52 PM |
|
the price is lower,so what can i do ?
buy? ;-)
|
|
|
|
coffeecoin (OP)
Member
Offline
Activity: 112
Merit: 10
|
|
May 17, 2014, 04:43:29 PM |
|
Helloooooo CFC community! I apologize for my lack of posts lately; if you don't know, I'm out of town, hence away from the command center. I'm very limited in what I can do right now, but I'm still dropping in to read PMs and posts.
Revamp staking age? I see some of you want to revamp the staking age, and I am in full agreement. I propose this discussion: List some parameters and why you think it will be necessary/beneficial/awesome. Bear in mind our annual interest rate when making a proposal.
|
|
|
|
dminer69
|
|
May 17, 2014, 04:47:09 PM |
|
Voted # 534 we are on the top 140s wohoo lets do this!
|
|
|
|
marti
|
|
May 17, 2014, 04:55:20 PM |
|
voted on mintpal #535
|
|
|
|
dminer69
|
|
May 17, 2014, 04:58:34 PM |
|
Helloooooo CFC community! I apologize for my lack of posts lately; if you don't know, I'm out of town, hence away from the command center. I'm very limited in what I can do right now, but I'm still dropping in to read PMs and posts.
Revamp staking age? I see some of you want to revamp the staking age, and I am in full agreement. I propose this discussion: List some parameters and why you think it will be necessary/beneficial/awesome. Bear in mind our annual interest rate when making a proposal.
im taking my experience of pos with freebiescoin and is awesome to see pos working daily, it has gotten me to buy more just being apart of the pos daily their staking is : Proof of Stake Min Coin Age: 1 days Proof of Stake Stake Coin Age Maturity: 40 days looking at the interest rate we have in cfc i would like to see 5% the first year second 3% third 2%, it would give some balance rater then 10% and then 0.95 %
|
|
|
|
|
coffeecoin (OP)
Member
Offline
Activity: 112
Merit: 10
|
|
May 17, 2014, 05:40:38 PM |
|
Helloooooo CFC community! I apologize for my lack of posts lately; if you don't know, I'm out of town, hence away from the command center. I'm very limited in what I can do right now, but I'm still dropping in to read PMs and posts.
Revamp staking age? I see some of you want to revamp the staking age, and I am in full agreement. I propose this discussion: List some parameters and why you think it will be necessary/beneficial/awesome. Bear in mind our annual interest rate when making a proposal.
im taking my experience of pos with freebiescoin and is awesome to see pos working daily, it has gotten me to buy more just being apart of the pos daily their staking is : Proof of Stake Min Coin Age: 1 days Proof of Stake Stake Coin Age Maturity: 40 days looking at the interest rate we have in cfc i would like to see 5% the first year second 3% third 2%, it would give some balance rater then 10% and then 0.95 % Just realized this Kindle doesn't have the percent sign haha... anyway, I do think 10 percent is a bit high, but the decrease in value every year is actually a 5 percent reduction of the previous year's rate. The decrease isn't so bad, imo. I have a feeling daily staking will be the consensus, so that will most likely be implemented regardless. I'd like to hear from some others too, the more, the better. Our coder is going to need this info before he gets to work
|
|
|
|
fedmahnkassad
|
|
May 17, 2014, 05:47:14 PM |
|
Helloooooo CFC community! I apologize for my lack of posts lately; if you don't know, I'm out of town, hence away from the command center. I'm very limited in what I can do right now, but I'm still dropping in to read PMs and posts.
Revamp staking age? I see some of you want to revamp the staking age, and I am in full agreement. I propose this discussion: List some parameters and why you think it will be necessary/beneficial/awesome. Bear in mind our annual interest rate when making a proposal.
im taking my experience of pos with freebiescoin and is awesome to see pos working daily, it has gotten me to buy more just being apart of the pos daily their staking is : Proof of Stake Min Coin Age: 1 days Proof of Stake Stake Coin Age Maturity: 40 days looking at the interest rate we have in cfc i would like to see 5% the first year second 3% third 2%, it would give some balance rater then 10% and then 0.95 % Just realized this Kindle doesn't have the percent sign haha... anyway, I do think 10 percent is a bit high, but the decrease in value every year is actually a 5 percent reduction of the previous year's rate. The decrease isn't so bad, imo. I have a feeling daily staking will be the consensus, so that will most likely be implemented regardless. I'd like to hear from some others too, the more, the better. Our coder is going to need this info before he gets to work My view: Remove PoW completely, min coin age 1 day I guess is fine, max coin maturity I would say 40 days is too little and I would go for 90 days. Previous year *9.5 I believe is also OK as it is for the stake % if we start at 10%.
|
|
|
|
coffeecoin (OP)
Member
Offline
Activity: 112
Merit: 10
|
|
May 17, 2014, 06:22:46 PM |
|
Helloooooo CFC community! I apologize for my lack of posts lately; if you don't know, I'm out of town, hence away from the command center. I'm very limited in what I can do right now, but I'm still dropping in to read PMs and posts.
Revamp staking age? I see some of you want to revamp the staking age, and I am in full agreement. I propose this discussion: List some parameters and why you think it will be necessary/beneficial/awesome. Bear in mind our annual interest rate when making a proposal.
im taking my experience of pos with freebiescoin and is awesome to see pos working daily, it has gotten me to buy more just being apart of the pos daily their staking is : Proof of Stake Min Coin Age: 1 days Proof of Stake Stake Coin Age Maturity: 40 days looking at the interest rate we have in cfc i would like to see 5% the first year second 3% third 2%, it would give some balance rater then 10% and then 0.95 % Just realized this Kindle doesn't have the percent sign haha... anyway, I do think 10 percent is a bit high, but the decrease in value every year is actually a 5 percent reduction of the previous year's rate. The decrease isn't so bad, imo. I have a feeling daily staking will be the consensus, so that will most likely be implemented regardless. I'd like to hear from some others too, the more, the better. Our coder is going to need this info before he gets to work My view: Remove PoW completely, min coin age 1 day I guess is fine, max coin maturity I would say 40 days is too little and I would go for 90 days. Previous year *9.5 I believe is also OK as it is for the stake % if we start at 10%. So far, we're definitely going with 1 day min stake and removing POW. Keep the feedback coming. Also, list any and all bugs you guys have experienced so we can get those fixed as well.
|
|
|
|
dminer69
|
|
May 17, 2014, 06:52:08 PM |
|
Helloooooo CFC community! I apologize for my lack of posts lately; if you don't know, I'm out of town, hence away from the command center. I'm very limited in what I can do right now, but I'm still dropping in to read PMs and posts.
Revamp staking age? I see some of you want to revamp the staking age, and I am in full agreement. I propose this discussion: List some parameters and why you think it will be necessary/beneficial/awesome. Bear in mind our annual interest rate when making a proposal.
im taking my experience of pos with freebiescoin and is awesome to see pos working daily, it has gotten me to buy more just being apart of the pos daily their staking is : Proof of Stake Min Coin Age: 1 days Proof of Stake Stake Coin Age Maturity: 40 days looking at the interest rate we have in cfc i would like to see 5% the first year second 3% third 2%, it would give some balance rater then 10% and then 0.95 % Just realized this Kindle doesn't have the percent sign haha... anyway, I do think 10 percent is a bit high, but the decrease in value every year is actually a 5 percent reduction of the previous year's rate. The decrease isn't so bad, imo. I have a feeling daily staking will be the consensus, so that will most likely be implemented regardless. I'd like to hear from some others too, the more, the better. Our coder is going to need this info before he gets to work My view: Remove PoW completely, min coin age 1 day I guess is fine, max coin maturity I would say 40 days is too little and I would go for 90 days. Previous year *9.5 I believe is also OK as it is for the stake % if we start at 10%. So far, we're definitely going with 1 day min stake and removing POW. Keep the feedback coming. Also, list any and all bugs you guys have experienced so we can get those fixed as well. i think we already mention the unlock button, now something that would be cool in the wallet a pos a timer, that countdowns in till pos happens im not a coder but i figure it would a great feature to have, people love to watch countdowns maybe some kind of coffee animation on the wallet with a coffee mug getting filled up.
|
|
|
|
fedmahnkassad
|
|
May 17, 2014, 07:03:03 PM |
|
Helloooooo CFC community! I apologize for my lack of posts lately; if you don't know, I'm out of town, hence away from the command center. I'm very limited in what I can do right now, but I'm still dropping in to read PMs and posts.
Revamp staking age? I see some of you want to revamp the staking age, and I am in full agreement. I propose this discussion: List some parameters and why you think it will be necessary/beneficial/awesome. Bear in mind our annual interest rate when making a proposal.
im taking my experience of pos with freebiescoin and is awesome to see pos working daily, it has gotten me to buy more just being apart of the pos daily their staking is : Proof of Stake Min Coin Age: 1 days Proof of Stake Stake Coin Age Maturity: 40 days looking at the interest rate we have in cfc i would like to see 5% the first year second 3% third 2%, it would give some balance rater then 10% and then 0.95 % Just realized this Kindle doesn't have the percent sign haha... anyway, I do think 10 percent is a bit high, but the decrease in value every year is actually a 5 percent reduction of the previous year's rate. The decrease isn't so bad, imo. I have a feeling daily staking will be the consensus, so that will most likely be implemented regardless. I'd like to hear from some others too, the more, the better. Our coder is going to need this info before he gets to work My view: Remove PoW completely, min coin age 1 day I guess is fine, max coin maturity I would say 40 days is too little and I would go for 90 days. Previous year *9.5 I believe is also OK as it is for the stake % if we start at 10%. So far, we're definitely going with 1 day min stake and removing POW. Keep the feedback coming. Also, list any and all bugs you guys have experienced so we can get those fixed as well. Talking about bugs, I am getting these: It's probably PoS not working correct or idk what exactly.
|
|
|
|
dminer69
|
|
May 17, 2014, 07:27:05 PM |
|
cfc on the rise!!!!
|
|
|
|
fedmahnkassad
|
|
May 17, 2014, 07:54:47 PM |
|
cfc on the rise!!!!
Yes, and still a great investment opportunity with very high short term RoI potential.
|
|
|
|
|