kingcarsen (OP)
|
|
October 10, 2017, 05:29:25 AM |
|
Denarius v1.0.8.0 WIP (You can test and try these features out in the addrindex branch on the github.com/carsenk/denarius)
Added searchrawtransactions rpc command Added getrichlist rpc command Added updaterichlist rpc command Added resetrichlist rpc command Added getblock_old rpc command (Old version of the getblock command prior v1.0.7.0) Added Rich List GUI to the Denarius QT Wallet Corrected the .pro file to USE_LEVELDB by default
Added the new flag "-reindexaddr" to index the new address DB, this must be indexed to run the richlist commands or use the Rich List GUI, reindexing the address DB can take awhile 15+ minutes, especially if it is your first time running -reindexaddr, also running updaterichlist or resetrichlist will take awhile to get the data. Feel free to pull the github branch "addrindex" to test the above new features, they will eventually be merged into the master branch, Please give me any feedback you have with these new features!
|
|
|
|
Raascal
Newbie
Offline
Activity: 30
Merit: 0
|
|
October 10, 2017, 06:54:49 AM |
|
using the new wallet, and seem all good
i am getting some funny font sizes on the overview screen though, no problems just strange
wallet total and usd total information are larger than the other fonts.
with the new wallet, i just used the new exe file, i haven't changed anything in the app data folder, not sure if i should wipe that and redo everything?
|
|
|
|
kingcarsen (OP)
|
|
October 10, 2017, 06:59:21 AM |
|
using the new wallet, and seem all good
i am getting some funny font sizes on the overview screen though, no problems just strange
wallet total and usd total information are larger than the other fonts.
with the new wallet, i just used the new exe file, i haven't changed anything in the app data folder, not sure if i should wipe that and redo everything?
Yes that is part of the update haha. Changed the font sizes on the the Overview to make your Total balance and USD balance appear a bit larger and easier to read
|
|
|
|
Raascal
Newbie
Offline
Activity: 30
Merit: 0
|
|
October 10, 2017, 08:23:42 AM |
|
ah, all good though it might have been my system as it hasn't been restarted for a while now.
|
|
|
|
tkh23
Newbie
Offline
Activity: 7
Merit: 0
|
|
October 10, 2017, 10:36:16 AM |
|
Do you need German translation?
|
|
|
|
fratrad
|
|
October 10, 2017, 11:00:50 AM |
|
The new wallet is working very good, one of the best wallets in crypto!
|
|
|
|
TheKingInYellow
Sr. Member
Offline
Activity: 546
Merit: 257
Have you found the Yellow Sign?
|
|
October 10, 2017, 02:58:55 PM |
|
I've never been a part of the denarius community; but looking at the github I'm impressed with the commit pace. I'm used to seeing projects be shot onto the market and hardly maintained. Just because you're so active I want to invest here, even though full staking rewards are far away.
|
|
|
|
kawaiicrypto
|
|
October 10, 2017, 03:14:41 PM |
|
I've never been a part of the denarius community; but looking at the github I'm impressed with the commit pace. I'm used to seeing projects be shot onto the market and hardly maintained. Just because you're so active I want to invest here, even though full staking rewards are far away.
You should join us in the Gitter chat at https://gitter.im/denariusproject/Lobby - relatively small but very cool community - and gitter integrates with github, so new commits are shown pretty much as soon as they are done.
|
|
|
|
joepino2k1
Newbie
Offline
Activity: 51
Merit: 0
|
|
October 10, 2017, 03:15:53 PM |
|
The wallet seems good to me
|
|
|
|
TheKingInYellow
Sr. Member
Offline
Activity: 546
Merit: 257
Have you found the Yellow Sign?
|
|
October 10, 2017, 03:32:32 PM |
|
I've never been a part of the denarius community; but looking at the github I'm impressed with the commit pace. I'm used to seeing projects be shot onto the market and hardly maintained. Just because you're so active I want to invest here, even though full staking rewards are far away.
You should join us in the Gitter chat at https://gitter.im/denariusproject/Lobby - relatively small but very cool community - and gitter integrates with github, so new commits are shown pretty much as soon as they are done. Perhaps I'll drop by sometime =) I'm more of a forum lurker myself
|
|
|
|
funeralpyre88
Newbie
Offline
Activity: 4
Merit: 0
|
|
October 10, 2017, 04:32:31 PM |
|
Hi, where do I get an updated DNR miner? mine seems to have stopped working today. I just got the updated wallet. lol
|
|
|
|
abudfv2008
|
|
October 10, 2017, 07:00:02 PM |
|
kingcarsen Hello again. I still didn't receive the answer about POS%.
|
|
|
|
kingcarsen (OP)
|
|
October 10, 2017, 07:28:28 PM |
|
kingcarsen Hello again. I still didn't receive the answer about POS%.
PoS is currently in effect since launch. PoS is set at 0.06 (6% per year) Currently due to PoW being in effect, more PoW blocks will be found than PoS blocks, roughly 11% of the last 100 blocks have been PoS, thus you will receive a bit less from PoS than without PoW. The block reward structure for PoS blocks is as follows: int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees) { if (pindexBest->nHeight > (YEARLY_BLOCKCOUNT*9000)) // Over 9000 years. return nFees;
int64_t nRewardCoinYear; nRewardCoinYear = COIN_YEAR_REWARD; // 0.06 6%
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;
if (fDebug && GetBoolArg("-printcreation")) printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
return nSubsidy + nFees; }
This is what the nSubsidy (Reward) of PoS is set to: int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN; So the PoS block reward is currently CoinAge * 0.06 / 365 / COIN; Hi, where do I get an updated DNR miner? mine seems to have stopped working today. I just got the updated wallet. lol
The latest Tribus miner for AMD is here: http://ccminer.org/preview/sgminer-x64-5.3.8.zipFor NVIDIA: https://github.com/tpruvot/ccminer/releases/download/2.2.2-tpruvot/ccminer-x86-2.2.2-cuda9.7z
|
|
|
|
Elder III
|
|
October 10, 2017, 10:53:13 PM |
|
Have there been any updates on the modified AMD miner that Wolf was rumored to be working on? *Carson is the fastest at releasing updates that I've observed so far in 2017; pretty impressive for a one man team (I think anyways).
|
|
|
|
sacombank
|
|
October 11, 2017, 02:16:32 AM |
|
Have there been any updates on the modified AMD miner that Wolf was rumored to be working on? *Carson is the fastest at releasing updates that I've observed so far in 2017; pretty impressive for a one man team (I think anyways). yes , i think so . we have a team - you can see bounty we have manager .
|
|
|
|
kawaiicrypto
|
|
October 11, 2017, 08:54:29 AM |
|
Have there been any updates on the modified AMD miner that Wolf was rumored to be working on?
He seems to be very pleased with the results he is getting from his miner, I am not sure he is done optimizing. Please keep in mind, he did the optimization as a challenge to himself and as far as I know, he never promised to release it to anyone.
|
|
|
|
ggnorevthx
Full Member
Offline
Activity: 140
Merit: 100
Proof-of-Asset Protocol
|
|
October 11, 2017, 10:26:54 AM |
|
Minining like crazy to migrate to PoS soon..
|
|
|
|
BHTeam
Full Member
Offline
Activity: 336
Merit: 100
https://www.crypto-coinz.net
|
|
October 11, 2017, 01:00:40 PM |
|
Guys, I am really proud to announce my site https://www.crypto-coinz.net/crypto-currency-statistics/Here you will find real time info for DENARIUS Global Hash rate, Difficulty, and exchange rates. Also many guides about crypto HOW-TOs and hardware repairs for video cards. I am currently writing most of the articles. I hope you find it useful. Smiley
|
|
|
|
Rigorous
|
|
October 11, 2017, 01:52:04 PM |
|
Looks like I missed the latest developments since I last checked. Denarius Wallet v1.0.7 is already available and v1.0.8 in the works.
Why this coin is trading so low with this amount of development is puzzling.
|
|
|
|
kawaiicrypto
|
|
October 11, 2017, 03:57:49 PM |
|
Looks like I missed the latest developments since I last checked. Denarius Wallet v1.0.7 is already available and v1.0.8 in the works.
Why this coin is trading so low with this amount of development is puzzling.
Yup, a lot is happening. Pricewise, hopefully this is the calm before the storm.
|
|
|
|
|