Bitcoin Forum
June 25, 2024, 06:05:33 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 7 »
81  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 31, 2014, 09:17:46 AM
Download either stops or it is blocked by firefox.
I finally arrived with IE by pausing and restart 4 times
20 minutes to download the wallet...I hope this is the last update  Roll Eyes

I just noticed that the new Firefox v. is blocking the download. I will address the issue very soon.
Bandwidth should be sufficient on our side. Of course it is not the last update. Smiley
82  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 31, 2014, 09:09:44 AM
3 Rigs and impossible to download new Wallet  Undecided

What is the problem?
83  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 31, 2014, 07:55:50 AM
Please, upgrade your wallet immediately! I don't want to see this error message ever again in my life! Smiley
I agree but ...
Please update Git repository immediatly ! It's lagging one revision behind the real wallet Smiley

This was done intentionally, the wallet's code is the same in both builds. We did this to see how many users fixed their blockchains, because Linux users have to use manual method to clean up the database and it is not certain they did it. Couple of hours ago I tried syching with a new client (with all nodes allowed) and it synched fine.
84  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 31, 2014, 07:52:40 AM
Hi guys, sorry I was a bit absent these last couple of days. I was buried in the code and I can say with pride, I think we did it. Smiley

V.

An outstanding job!


Thank you! Smiley The more I think, the more I like the idea that the problems appeared or better that they appeared so early, although it was stressful as hell and still is. We've optimized so much stuff, adjusted the POS target spacing, polished the code, introduced blockchain delivery in the installer, which will later, when the blockchain grows in size, help new user to get synchronized instantly. I apologize for so many versions but it was the only way to fix the problems in shortest possible time.

Cheers,

V.



85  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 31, 2014, 05:53:46 AM
With the following informations, could you explain me how you calculate the block reward ?
Code:
$ aidbitd getinfo
{
    "version" : "v1.0.2.0",
    "protocolversion" : 60015,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "newmint" : 0.00000000,
    "stake" : 0.00000000,
    "blocks" : 17965,
    "timeoffset" : 0,
    "moneysupply" : 4054901.95566341,
    "connections" : 3,
    "proxy" : "",
    "ip" : "82.229.26.235",
    "difficulty" : {
        "proof-of-work" : 12.67447368,
        "proof-of-stake" : 0.00060976
    },
    "testnet" : false,
    "keypoololdest" : 1405716160,
    "keypoolsize" : 101,
    "paytxfee" : 0.00010000,
    "mininput" : 0.00000000,
    "errors" : "WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers."
}

The error message will be corrected soon, when wallet will get updated Smiley

Thanks.

Well, with the above information you could only estimate the reward for block 19765, since the reward is now based on previous block's height and difficulty. But you could call getblockhash 17964 and getblock #hash to get the correct difficulty, then you'd just need to calculate it using: ceil(8 * dDiff / (525600 + 17964) * 525600). Or you could use getmininginfo command.

Regards,

AidBit

Please, upgrade your wallet immediately! I don't want to see this error message ever again in my life! Smiley
86  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 31, 2014, 05:47:42 AM
Hi guys, sorry I was a bit absent these last couple of days. I was buried in the code and I can say with pride, I think we did it. Smiley

V.
87  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 26, 2014, 11:32:23 PM
Can you fix the link to new wallet please.

I am on it...

Very good job guys!
88  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 25, 2014, 11:19:45 PM
Difficulty based block reward according to: ceil(8 * dDiff / (525600 + nHeight) * 525600)
Block reward scaling factor on 12 month periods

I can only get close with this:    8 * dDiff / ((525600 + nHeight) / 525600)

Which looks wrong since that would be an increasing subsidy into a complete double by day 356 (and forget what multiplication instead of division gets you!).

8 * dDiff / ((525600 - nHeight) / 525600) would be a decreasing subsidy and gets me closer, for now, but that would take us to a complete 0 subsidy by day 365.  Cheesy

I'm sure I'm missing something here and really showing my ignorance.  Huh

nHeight is block height or block number. 1 year = ~525600 blocks

So lets calculate the reward for dDiff = 1 and block 525600 (~365th day)

8 * 1 / ((525600 + 525600) / 526500) = 8 * 1 / (1051200 / 525600) = 8 * 1 / 2 = 4


Realtime rewards are closer to a simple 8 * 1 dDiff, but off by a good fraction (even after taking into account the 10% charity factor). I can't get anything to work consistently.

Also, I understand nHeight to mean current block height, being the highest block in existence to date. 12194 as of 2014-07-25 22:50:26. Am I wrong on this?



Please let me get back to you a bit later. I just noticed a problem and have to fix it as soon as possible.   Undecided
89  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 25, 2014, 10:37:15 PM
Difficulty based block reward according to: ceil(8 * dDiff / (525600 + nHeight) * 525600)
Block reward scaling factor on 12 month periods

I can only get close with this:    8 * dDiff / ((525600 + nHeight) / 525600)

Which looks wrong since that would be an increasing subsidy into a complete double by day 356 (and forget what multiplication instead of division gets you!).

8 * dDiff / ((525600 - nHeight) / 525600) would be a decreasing subsidy and gets me closer, for now, but that would take us to a complete 0 subsidy by day 365.  Cheesy

I'm sure I'm missing something here and really showing my ignorance.  Huh

nHeight is block height or block number. 1 year = ~525600 blocks

So lets calculate the reward for dDiff = 1 and block 525600 (~365th day)

8 * 1 / ((525600 + 525600) / 526500) = 8 * 1 / (1051200 / 525600) = 8 * 1 / 2 = 4
 

90  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 25, 2014, 05:36:28 AM
I created an aidbit subreddit with links to this thread and your webpage and such. Got 3 members so far but looking forward to the influx after cryptsy. http://www.reddit.com/r/AidBit

Thanks! Subreddit link added to Social Networks.
91  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 23, 2014, 11:41:12 AM
Pool operators, please disable staking on main pool wallets to prevent
any possible problems with payouts.


Code:
#aidbit.conf
staking=0

Thank you,

Vger
92  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 21, 2014, 01:34:26 PM
It would be nice to sort the NOMP Worker Stats page somehow as it seems to be unsorted. I would sort it by miner hashrate descending as it is usual on most pools.

I agree, will fix it as soon as I find the time.

Thanks,

V.
93  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 21, 2014, 12:08:47 PM

Actually this was ment to be like this. The fourth number is just a build number.

I can of course fix that if the community insists.  

Thanks,

V-Ger

I'm convinced and truly believe in success for AidBit, from that reason I notice every details. (mining with my, about 140Mh/s)

Best wishes for AidBit team and miners comunity!

Thank you so much for your kind words. Smiley
94  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 21, 2014, 12:01:31 PM
Hi my friends.
I'm mining on kei.aidbit.net:3032.
I'm using URL (difficulty 1) with "--difficulty-multiplier 0.00390625 --no-submit-stale".

It's OK?

I use Xubu 12.04, how can I correct sgminer.conf with "difficult multiplier and no submint-stale?

Thanks a lot

Actually the difficulty is set to dynamicaly adjust (1-512), so the shares come in 15 sec intervals.
I'm not sure if I understand you question. You can use the above commands as arguments or edit the config file (nano configname.conf) and start sgminer with ./sgminer --config configname.conf

Cheers,
V.
1. I don't know how to edit config file with difficult multiplier and no submint-stale. I can't find it in the web...

2. So what is the difference between:
URL (difficulty Cool: stratum+tcp://kei.aidbit.net:3008
URL (difficulty 1): stratum+tcp://kei.aidbit.net:3032
URL (difficulty 256): stratum+tcp://kei.aidbit.net:3256
Share time adjust?

Thanks


Actually ports 3008 and 3256 use fixed difficulty but are currently closed, so you'll have to use the stratum+tcp://kei.aidbit.net:3032. It really isn't that difficult.  Perhaps the most easy way would be to start the ./sgminer with arguments as shown in first post then save the settings with S and R. Then just use the command nano sgminer.conf, edit the settings and save the changes with CTRL+O. Good luck.

95  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 21, 2014, 11:44:55 AM
Hi my friends.
I'm mining on kei.aidbit.net:3032.
I'm using URL (difficulty 1) with "--difficulty-multiplier 0.00390625 --no-submit-stale".

It's OK?

I use Xubu 12.04, how can I correct sgminer.conf with "difficult multiplier and no submint-stale?

Thanks a lot

Actually the difficulty is set to dynamicaly adjust (1-512), so the shares come in 15 sec intervals.
I'm not sure if I understand you question. You can use the above commands as arguments or edit the config file (nano configname.conf) and start sgminer with ./sgminer --config configname.conf

Cheers,
V.
96  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 21, 2014, 11:16:19 AM

Actually this was ment to be like this. The fourth number is just a build number.

I can of course fix that if the community insists.  

Thanks,

V-Ger
97  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 21, 2014, 11:08:22 AM
I noticed you have added "--difficulty-multiplier 0.00390625" parameter in your example of GPU configuration. Is it mandatory ? And about "--no-submit-stale" ?
BTW, the change on Git repo is only a cosmetic change for the RPC port number, no change in code.

Thanks.


Neither of settings is mandatory. Yeah, I know, I fixed the wrong default RPC port setting and all the .ts files and decided to reset everything to make it clean. (Sorry, OCD kicked in). I won't do it again, I promise. Just delete the clone and DL the source again. Smiley
 
98  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 21, 2014, 08:02:31 AM
Please post NOMP pool instructions / codes .. or if done p2pool but this is going to require some more work?
I will make a new pool..
Or can you just use a pool with support for groestl?

Please see necessary stratum modifications, posted on our git:
https://github.com/AidBit/node-stratum-pool/tree/AidBit

Configuring NOMP is a pretty straight forward process.
Due to our modifications, first two reward recipients in the pool config must be configured with 0 percentages:

Code:
"rewardRecipients": {
"ANhmhMCxJZkV7M5nmBMaXZWVfRuba79B3m": 0,
"AVBLFaezaUM83odu4x3Rr8dQ8vHVFHEddC": 0
},

Cheers,

V
99  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 20, 2014, 11:24:04 PM
OK fixed, now we can test the update notification functionality in the "production env".

V.
100  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][AID] AidBit | Digital-currency redefined | POW/POS | Groestl | Charity on: July 20, 2014, 02:28:42 PM
Windows has left the building  Roll Eyes

Not sure if everybody would agree with, especially in the 3D-Design department. I am talking about Win vs Mac of course. Smiley

OS X has also left the building, into a VM though, need it for writing music.

Well, I need them all, so I'm tripple booting. Smiley
Pages: « 1 2 3 4 [5] 6 7 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!