min
Newbie
Offline
Activity: 28
Merit: 0
|
|
June 11, 2014, 08:21:49 PM |
|
I have a question for the dev team .
I have 215 970.829276 AC , why when I see the rich list adresse , I don't see mine ?
|
|
|
|
ahmedjadoon
Legendary
Offline
Activity: 1414
Merit: 1000
|
|
June 11, 2014, 09:02:24 PM |
|
AC price has improved today its 120 SAT now.
|
|
|
|
|
FlyingMongoose
|
|
June 11, 2014, 09:51:39 PM Last edit: June 12, 2014, 01:31:17 AM by FlyingMongoose |
|
Mac Wallet 2.0.1.0 http://www.mediafire.com/download/6ktucyrluclyd41/AsiaCoin-2.0.1.0.dmgAs far as I can tell it works, it connects to the network, and it stakes. This is my first compile of a wallet that has worked, so as of right now I recommend being wary. This was compiled on OSX Mavericks (10.9.3) with compatibility to OSX 10.5 using QT Creator with QT SDK 4.8.6 and the same requirements as bitcoin and litecoin for mac on a homebrew install. Here is the modifications to the source that allowed me to compile: (You guys can always merge into github and view the diffs, but I wouldn't necessarily recommend it). Version.H was updated to show proper version # (#define DISPLAY_VERSION_REVISION 0 -> #define DISPLAY_VERSION_REVISION 1) scrypt-x86_64.S was updated (.align 32 doesn't work on OSX, must be .align 16) asiacoin-qt.pro was updated (Pointed to my proper library and include locations based on homebrew) net.cpp was updated (line 61, array<int, THREAD_MAX> vnThreadsRunning; -> boost::array<int, THREAD_MAX> vnThreadsRunning;) serialize.h was updated (too many definitions of an insert function, I commented out the lines 814-825) Here is the source code with modifications http://www.mediafire.com/download/l8y6wg2dndm3z86/asiacoin.zipEnjoy :-) Donate AC: AFsn4r8CLbP4qtTadDKifbANdWiKhxvs8J Donate NAUT: NZwuGk2BUoMyx2a3YbMiUxret8H45geHZ8 Donate BTC: 1KNLk4Dhz9u9CAnPj6vJ7QGi16HK9FbDAu Edit: Updated and fixed, new URL.
|
qoinpro.com/951c974b34f66cc68e805832df0c9d8c
|
|
|
JohnnyKovak
Newbie
Offline
Activity: 35
Merit: 0
|
|
June 11, 2014, 10:49:03 PM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
|
|
|
|
Maestro1 (OP)
|
|
June 11, 2014, 11:22:05 PM |
|
I have a question for the dev team .
I have 215 970.829276 AC , why when I see the rich list adresse , I don't see mine ?
It's most likely because your balance is being held on multiple addresses, not one single address (this can happen even if you deposit all your coins into one single address, but later withdrew some funds from your wallet).
|
If you're happy with our work on AsiaCoin revival, please consider giving us trust feedback and provide donations to the new AsiaCoin Foundation.BTC: 1LCsuAojeFqf5YamN9iiwEo3VJ9YM8HHjf
|
|
|
Maestro1 (OP)
|
|
June 11, 2014, 11:24:13 PM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
Yes, that is natural. You need to wait for 14 days before you can stake.
|
If you're happy with our work on AsiaCoin revival, please consider giving us trust feedback and provide donations to the new AsiaCoin Foundation.BTC: 1LCsuAojeFqf5YamN9iiwEo3VJ9YM8HHjf
|
|
|
Maestro1 (OP)
|
|
June 11, 2014, 11:26:01 PM |
|
Mac Wallet 2.0.1.0 http://www.mediafire.com/download/wt8ppk1dufn78zr/AsiaCoin.dmgAs far as I can tell it works, it connects to the network, and it stakes. This is my first compile of a wallet that has worked, so as of right now I recommend being wary. This was compiled on OSX Mavericks (10.9.3) with compatibility to OSX 10.5 using QT Creator with QT SDK 4.8.6 and the same requirements as bitcoin and litecoin for mac on a homebrew install. Here is the modifications to the source that allowed me to compile: (You guys can always merge into github and view the diffs, but I wouldn't necessarily recommend it). Version.H was updated to show proper version # (#define DISPLAY_VERSION_REVISION 0 -> #define DISPLAY_VERSION_REVISION 1) scrypt-x86_64.S was updated (.align 32 doesn't work on OSX, must be .align 16) asiacoin-qt.pro was updated (Pointed to my proper library and include locations based on homebrew) net.cpp was updated (line 61, array<int, THREAD_MAX> vnThreadsRunning; -> boost::array<int, THREAD_MAX> vnThreadsRunning;) serialize.h was updated (too many definitions of an insert function, I commented out the lines 814-825) Here is the source code with modifications http://www.mediafire.com/download/l8y6wg2dndm3z86/asiacoin.zipEnjoy :-) Donate AC: AFsn4r8CLbP4qtTadDKifbANdWiKhxvs8J Donate NAUT: NZwuGk2BUoMyx2a3YbMiUxret8H45geHZ8 Donate BTC: 1KNLk4Dhz9u9CAnPj6vJ7QGi16HK9FbDAu Thanks for this. Once we confirm it's working properly, I will add this to the OP and send the bounty on your way!
|
If you're happy with our work on AsiaCoin revival, please consider giving us trust feedback and provide donations to the new AsiaCoin Foundation.BTC: 1LCsuAojeFqf5YamN9iiwEo3VJ9YM8HHjf
|
|
|
FlyingMongoose
|
|
June 11, 2014, 11:35:42 PM Last edit: June 12, 2014, 01:30:55 AM by FlyingMongoose |
|
Mac Wallet 2.0.1.0 http://www.mediafire.com/download/6ktucyrluclyd41/AsiaCoin-2.0.1.0.dmgAs far as I can tell it works, it connects to the network, and it stakes. This is my first compile of a wallet that has worked, so as of right now I recommend being wary. This was compiled on OSX Mavericks (10.9.3) with compatibility to OSX 10.5 using QT Creator with QT SDK 4.8.6 and the same requirements as bitcoin and litecoin for mac on a homebrew install. Here is the modifications to the source that allowed me to compile: (You guys can always merge into github and view the diffs, but I wouldn't necessarily recommend it). Version.H was updated to show proper version # (#define DISPLAY_VERSION_REVISION 0 -> #define DISPLAY_VERSION_REVISION 1) scrypt-x86_64.S was updated (.align 32 doesn't work on OSX, must be .align 16) asiacoin-qt.pro was updated (Pointed to my proper library and include locations based on homebrew) net.cpp was updated (line 61, array<int, THREAD_MAX> vnThreadsRunning; -> boost::array<int, THREAD_MAX> vnThreadsRunning;) serialize.h was updated (too many definitions of an insert function, I commented out the lines 814-825) Here is the source code with modifications http://www.mediafire.com/download/l8y6wg2dndm3z86/asiacoin.zipEnjoy :-) Donate AC: AFsn4r8CLbP4qtTadDKifbANdWiKhxvs8J Donate NAUT: NZwuGk2BUoMyx2a3YbMiUxret8H45geHZ8 Donate BTC: 1KNLk4Dhz9u9CAnPj6vJ7QGi16HK9FbDAu Thanks for this. Once we confirm it's working properly, I will add this to the OP and send the bounty on your way! Awesome. I can say it works on mine. Also I have an Ubuntu laptop I'll see if I can't get a compile on that too
|
qoinpro.com/951c974b34f66cc68e805832df0c9d8c
|
|
|
JohnnyKovak
Newbie
Offline
Activity: 35
Merit: 0
|
|
June 11, 2014, 11:50:43 PM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
Yes, that is natural. You need to wait for 14 days before you can stake. Thanks but the coins have been in the wallet for months and i was getting POS Coins regularly...until now
|
|
|
|
Maestro1 (OP)
|
|
June 11, 2014, 11:57:04 PM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
Yes, that is natural. You need to wait for 14 days before you can stake. Thanks but the coins have been in the wallet for months and i was getting POS Coins regularly...until now If you stake, the new generated coins (and the ones used for staking) need 14 days to mature. So once all your coin-blocks stage, you need to wait until you have some new mature coins that can stake. I've discussed this at length here before. You can search on how PoS blocks are generated to see why this is happening.
|
If you're happy with our work on AsiaCoin revival, please consider giving us trust feedback and provide donations to the new AsiaCoin Foundation.BTC: 1LCsuAojeFqf5YamN9iiwEo3VJ9YM8HHjf
|
|
|
FlyingMongoose
|
|
June 11, 2014, 11:58:08 PM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
Yes, that is natural. You need to wait for 14 days before you can stake. Thanks but the coins have been in the wallet for months and i was getting POS Coins regularly...until now You also need to be on Wallet 2.0.1.0 not 2.0.0.0. Currently the only OFFICIAL version of this is on the first post of this thread and only Windows. (This is why I compiled a mac build of it above, but as I pointed out, it's my first mac compile). I'm working on a *nix compile. I was having the same issue on my mac wallet (2.0.0.0) until I did this build for OSX myself.
|
qoinpro.com/951c974b34f66cc68e805832df0c9d8c
|
|
|
JohnnyKovak
Newbie
Offline
Activity: 35
Merit: 0
|
|
June 12, 2014, 12:01:24 AM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
Yes, that is natural. You need to wait for 14 days before you can stake. Thanks but the coins have been in the wallet for months and i was getting POS Coins regularly...until now You also need to be on Wallet 2.0.1.0 not 2.0.0.0. Currently the only OFFICIAL version of this is on the first post of this thread and only Windows. (This is why I compiled a mac build of it above, but as I pointed out, it's my first mac compile). I'm working on a *nix compile. Great Thanks
|
|
|
|
JohnnyKovak
Newbie
Offline
Activity: 35
Merit: 0
|
|
June 12, 2014, 12:02:58 AM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
Yes, that is natural. You need to wait for 14 days before you can stake. Thanks but the coins have been in the wallet for months and i was getting POS Coins regularly...until now If you stake, the new generated coins (and the ones used for staking) need 14 days to mature. So once all your coin-blocks stage, you need to wait until you have some new mature coins that can stake. I've discussed this at length here before. You can search on how PoS blocks are generated to see why this is happening. i will Do i am Learning Slowly..Thanks to lots of Good peoples Help....Thanks Good Man
|
|
|
|
FlyingMongoose
|
|
June 12, 2014, 12:04:46 AM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
Yes, that is natural. You need to wait for 14 days before you can stake. Thanks but the coins have been in the wallet for months and i was getting POS Coins regularly...until now You also need to be on Wallet 2.0.1.0 not 2.0.0.0. Currently the only OFFICIAL version of this is on the first post of this thread and only Windows. (This is why I compiled a mac build of it above, but as I pointed out, it's my first mac compile). I'm working on a *nix compile. Great Thanks You're welcome, but as I said, be wary, this is my first compile of a wallet for mac, and while it seems to work for me I don't want anyone to get screwed over. I would recommend (if you are on mac), to wait until the staff here confirm my build works properly.
|
qoinpro.com/951c974b34f66cc68e805832df0c9d8c
|
|
|
JohnnyKovak
Newbie
Offline
Activity: 35
Merit: 0
|
|
June 12, 2014, 12:14:20 AM |
|
hi all
i have had no AC POS for 11 days is this normal
i have updated my wallet
thank you
Yes, that is natural. You need to wait for 14 days before you can stake. Thanks but the coins have been in the wallet for months and i was getting POS Coins regularly...until now You also need to be on Wallet 2.0.1.0 not 2.0.0.0. Currently the only OFFICIAL version of this is on the first post of this thread and only Windows. (This is why I compiled a mac build of it above, but as I pointed out, it's my first mac compile). I'm working on a *nix compile. Great Thanks You're welcome, but as I said, be wary, this is my first compile of a wallet for mac, and while it seems to work for me I don't want anyone to get screwed over. I would recommend (if you are on mac), to wait until the staff here confirm my build works properly. i'm on Window's for my Wallets but i was running 2.0.0 and it wasn't till you said that i noticed there is now 2.0.1.0...soo many wallets soo many updates...soo many hotfixesssss hehe
|
|
|
|
ORiN
|
|
June 12, 2014, 12:20:12 AM |
|
Mac Wallet 2.0.1.0 http://www.mediafire.com/download/wt8ppk1dufn78zr/AsiaCoin.dmgAs far as I can tell it works, it connects to the network, and it stakes. This is my first compile of a wallet that has worked, so as of right now I recommend being wary. This was compiled on OSX Mavericks (10.9.3) with compatibility to OSX 10.5 using QT Creator with QT SDK 4.8.6 and the same requirements as bitcoin and litecoin for mac on a homebrew install. Here is the modifications to the source that allowed me to compile: (You guys can always merge into github and view the diffs, but I wouldn't necessarily recommend it). Version.H was updated to show proper version # (#define DISPLAY_VERSION_REVISION 0 -> #define DISPLAY_VERSION_REVISION 1) scrypt-x86_64.S was updated (.align 32 doesn't work on OSX, must be .align 16) asiacoin-qt.pro was updated (Pointed to my proper library and include locations based on homebrew) net.cpp was updated (line 61, array<int, THREAD_MAX> vnThreadsRunning; -> boost::array<int, THREAD_MAX> vnThreadsRunning;) serialize.h was updated (too many definitions of an insert function, I commented out the lines 814-825) Here is the source code with modifications http://www.mediafire.com/download/l8y6wg2dndm3z86/asiacoin.zipEnjoy :-) Donate AC: AFsn4r8CLbP4qtTadDKifbANdWiKhxvs8J Donate NAUT: NZwuGk2BUoMyx2a3YbMiUxret8H45geHZ8 Donate BTC: 1KNLk4Dhz9u9CAnPj6vJ7QGi16HK9FbDAu Error after trying to run the wallet. Dyld Error Message: Library not loaded: /usr/local/lib/libminiupnpc.9.dylib Referenced from: /Applications/AsiaCoin-Qt.app/Contents/MacOS/AsiaCoin-Qt Reason: image not found
|
|
|
|
FlyingMongoose
|
|
June 12, 2014, 12:56:24 AM |
|
Mac Wallet 2.0.1.0 http://www.mediafire.com/download/wt8ppk1dufn78zr/AsiaCoin.dmgAs far as I can tell it works, it connects to the network, and it stakes. This is my first compile of a wallet that has worked, so as of right now I recommend being wary. This was compiled on OSX Mavericks (10.9.3) with compatibility to OSX 10.5 using QT Creator with QT SDK 4.8.6 and the same requirements as bitcoin and litecoin for mac on a homebrew install. Here is the modifications to the source that allowed me to compile: (You guys can always merge into github and view the diffs, but I wouldn't necessarily recommend it). Version.H was updated to show proper version # (#define DISPLAY_VERSION_REVISION 0 -> #define DISPLAY_VERSION_REVISION 1) scrypt-x86_64.S was updated (.align 32 doesn't work on OSX, must be .align 16) asiacoin-qt.pro was updated (Pointed to my proper library and include locations based on homebrew) net.cpp was updated (line 61, array<int, THREAD_MAX> vnThreadsRunning; -> boost::array<int, THREAD_MAX> vnThreadsRunning;) serialize.h was updated (too many definitions of an insert function, I commented out the lines 814-825) Here is the source code with modifications http://www.mediafire.com/download/l8y6wg2dndm3z86/asiacoin.zipEnjoy :-) Donate AC: AFsn4r8CLbP4qtTadDKifbANdWiKhxvs8J Donate NAUT: NZwuGk2BUoMyx2a3YbMiUxret8H45geHZ8 Donate BTC: 1KNLk4Dhz9u9CAnPj6vJ7QGi16HK9FbDAu Error after trying to run the wallet. Dyld Error Message: Library not loaded: /usr/local/lib/libminiupnpc.9.dylib Referenced from: /Applications/AsiaCoin-Qt.app/Contents/MacOS/AsiaCoin-Qt Reason: image not found A bit strange, the miniupnpc libraries were in my path when I compiled... I'll look into it. Though I believe it should be an easy fix. Just a compile of the app with libraries included should do it...
|
qoinpro.com/951c974b34f66cc68e805832df0c9d8c
|
|
|
CryptoSteam
|
|
June 12, 2014, 01:00:31 AM |
|
I'm baaaack.. What's up ya'll? On BTER, AC is at 470 sats and MintPal is at 260 sats. Good buying opportunity for AsiaCoin at MintPal!!!
|
|
|
|
FlyingMongoose
|
|
June 12, 2014, 01:14:23 AM Last edit: June 12, 2014, 01:29:59 AM by FlyingMongoose |
|
Mac Wallet 2.0.1.0 http://www.mediafire.com/download/6ktucyrluclyd41/AsiaCoin-2.0.1.0.dmgAs far as I can tell it works, it connects to the network, and it stakes. This is my first compile of a wallet that has worked, so as of right now I recommend being wary. This was compiled on OSX Mavericks (10.9.3) with compatibility to OSX 10.5 using QT Creator with QT SDK 4.8.6 and the same requirements as bitcoin and litecoin for mac on a homebrew install. Here is the modifications to the source that allowed me to compile: (You guys can always merge into github and view the diffs, but I wouldn't necessarily recommend it). Version.H was updated to show proper version # (#define DISPLAY_VERSION_REVISION 0 -> #define DISPLAY_VERSION_REVISION 1) scrypt-x86_64.S was updated (.align 32 doesn't work on OSX, must be .align 16) asiacoin-qt.pro was updated (Pointed to my proper library and include locations based on homebrew) net.cpp was updated (line 61, array<int, THREAD_MAX> vnThreadsRunning; -> boost::array<int, THREAD_MAX> vnThreadsRunning;) serialize.h was updated (too many definitions of an insert function, I commented out the lines 814-825) Here is the source code with modifications http://www.mediafire.com/download/l8y6wg2dndm3z86/asiacoin.zipEnjoy :-) Donate AC: AFsn4r8CLbP4qtTadDKifbANdWiKhxvs8J Donate NAUT: NZwuGk2BUoMyx2a3YbMiUxret8H45geHZ8 Donate BTC: 1KNLk4Dhz9u9CAnPj6vJ7QGi16HK9FbDAu Error after trying to run the wallet. Dyld Error Message: Library not loaded: /usr/local/lib/libminiupnpc.9.dylib Referenced from: /Applications/AsiaCoin-Qt.app/Contents/MacOS/AsiaCoin-Qt Reason: image not found A bit strange, the miniupnpc libraries were in my path when I compiled... I'll look into it. Though I believe it should be an easy fix. Just a compile of the app with libraries included should do it... Found the issue, compiling a new one now. Be about 30 minutes. (compile, package, upload)
|
qoinpro.com/951c974b34f66cc68e805832df0c9d8c
|
|
|
|