Bitcoin Forum
August 23, 2024, 09:57:23 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 [173] 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 ... 513 »
3441  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 💵🐵💵 | GorillaBucks | GorillaBand Masternodes 50/50 | Cloud Staking | 💵🐵💵 on: July 04, 2015, 07:42:38 PM
That will solve the error you got in what you posted
3442  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 💵🐵💵 | GorillaBucks | GorillaBand Masternodes 50/50 | Cloud Staking | 💵🐵💵 on: July 04, 2015, 07:02:36 PM
This is why I didn't want to try and compile it myself lol...

Quote
GorillaBand:~$ cd GorillaBucks-master
GorillaBand1:~/GorillaBucks-master$ cd src
GorillaBand1:~/GorillaBucks-master/src$ make -f makefile.unix
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -DUSE_SECP256K1 -I/home/GorillaBand1/GorillaBucks-master/src -I/home/GorillaBand1/GorillaBucks-master/src/obj -DUSE_UPNP=0 -DENABLE_WALLET -I/home/GorillaBand1/GorillaBucks-master/src/leveldb/include -I/home/GorillaBand1/GorillaBucks-master/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:258:1: fatal error: opening dependency file obj/alert.d: No such file or directory
 }
 ^
compilation terminated.
makefile.unix:202: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1
GorillaBand1:~/GorillaBucks-master/src$

Create an empty folder named obj in GorillaBucks/src/
3443  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 04, 2015, 05:51:33 PM
dasource has just set up a list of GorillaBands that you can now view remotely

3444  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 04, 2015, 05:46:38 PM
iGotSpots you can write off on my pm? And reasonably conclude this, I'll be happy with anything;]

I have a ton of PM's, I haven't really gone through them all yet, but I will get to them soon
3445  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 04, 2015, 04:55:35 PM
@spots I have btc withdrawal waiting for admin approval in gorilla exchange, how long it gonna take? Its already 6 hours?  Roll Eyes

Forwarded to Paul, he'll be on it shortly, sorry
3446  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 04, 2015, 04:36:12 PM
Added a second block explorer and paper wallets today. Thanks dasource  Wink


3447  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 04, 2015, 03:08:09 AM
It's a known, but sporadic, issue that I'm working on nailing down
Not what I asked but thats cool lol

So if you don't mind me beating the proverbial dead horse lol, is there a linux install planned ?

Most people use Linux so they don't have to use pre-compiled binaries, so it's not really on my list of stuff to do
3448  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 04, 2015, 01:42:44 AM
It's a known, but sporadic, issue that I'm working on nailing down
3449  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 04, 2015, 12:04:58 AM
Just keeping this on the newest page because it's very important

Variance Staking Explained
Now that we've all had a few days to get used to the new blockchain and wallet, there have been a few questions to how much people will stake on their deposits. While the changes are not over-the-top complicated, they do change the basic fundamentals of how rewards are calculated. I wanted to take a few minutes to explain exactly what Variance Staking means

First, I'll just copy the code from Github, which makes it pretty self explanatory when you see it singled out. Please note there are a few extra spaces that are not on Github, only because it was making emoticons with them on the forums. With that being said, let's get into it

Code:
int64_t GetProofOfStakeReward(int nHeight, int64_t nCoinAge, int64_t nFees)
{
    int64_t nMultiplier = 100 * CENT;
    int64_t nSubsidy = (((nHeight % 9) + ((nCoinAge % 100000) * 33 / (365 * 33 + 8 ))) + 1) * nMultiplier;
    a + b
return nSubsidy;
}

nMultiplier is simply used as a tweaking dial that can be turned up or down as needed to control inflation. Using 100 * CENT just gives us full coins, rather than decimals. The main reason is just so this is here later to change if needed, it really serves no purpose other than to do calculations in full coins

The line we are going to look at and break down is this:

int64_t nSubsidy = (((nHeight % 9) + ((nCoinAge % 100000) * 33 / (365 * 33 + 8 ))) + 1) * nMultiplier;

nSubsidy is the final reward that will be passed later on. nHeight is block number and nCoinAge is obvious

nHeight % 9 will take the block number, divide it by 9 and return the remainder as the value
This number will always be between 0 and 9 (the base rewards we have been seeing so far)

nCoinage % 100000 will allow a maximum coinage of 100,000 to be used, which is then multiplied by '(33 / (365 * 33 + 8 )' or 0.00273790757, to scale it down further and prevent compounding inflation
This will return a value somewhere between 0 and 273.790757488

The final +1 is there for one simple reason.. while doing test runs this problem never came up, but I noticed that it could potentially in the future.. If that last +1 was not there, as unlikely as it is, we could have run into a 'divide by zero' issue while calculating or splitting rewards, so that is just a failsafe to ensure we never return 0 as the value (this was originaly was nHeight calculation is in, but was later replaced. nHeight is only used now to fluctuate rewards for deposits that are not large enough to be scaled by coinage)

Last, as explained above, nMultiplier is only used to turn the final result into a full number, rather than a long reward amount with a staggering amount of decimal places

Hopefully this will clear up a bit on what you can expect both now and for the future as far as staking and GorillaBand rewards. The later in the life of the coin we get, with higher coinage, the faster GorillaBands will pay themselves off. At current rates for now, you are doubling your coins in less than a month

TL;DR: Rewards will be between 1.0 and about 284 for the life of the coin if no updates are required
3450  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 04, 2015, 12:02:42 AM
In ohio right now with family so I'm monitoring remotely as the image shows but I'm curious if you, IGS, might have an idea on why all of a sudden I'm seeing / getting this on one of my two clients.

The machine is win 7 64 bit, the one crashing is the main client run from the exe where as the second which seems to be holding fine is run from a shortcut with the target trick.



Paul came up with a bandaid fix for this for now

Run with XP-Compatibility and it shouldn't crash again. It's a known, but sporadic, issue that I'm working on nailing down
3451  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH] Official Thread - New Wallet Released on: July 03, 2015, 09:15:14 PM
For now we need to get some active connections. Is hosting a nodes what needs to happen?

OK. I agree. Let's use that time to agree as a community on what we want with this coin, make a list of changes taht we want and than (in a week or so) ask him if he's willing to be the dev and to do that.

Ok, no connections at all again. I guess we need a node. If someone can steer me in the right direction on what needs to be done I will host a node.


The last known block that everyone agrees on then host a node from that block onwards.

You guys might or might not be aware that the old spots wallets do not have the ability import a blockchain via the normal method of bootstrap.dat. You can verify this by looking into the init.cpp file. In order to "import" a chain with these wallets you need to follow a more complex process of detaching databases and copying over those block files etc which becomes complicated cross operating systems.

The biggest problem with Ecash going forward is to get a wallet up to date. At some point I attempted this to help you guys but the chain gets stuck every 500 blocks. With a chain size of 1m+ it becomes an almost impossible task. There are ways around it with scripts but a person has to baby sit the process. I was willing to do it and got halfway before I realised during testing that creating a cross-platform compatible up to date bootstrap.dat is going to serve no purpose as the wallet does not have the ability to read it so I halted the effort. It is trivial to create a Linux VPS sync node and at that point I created one to see if it will sync better but the problem is to get an up to date chain on it. A normal chain sync from scratch on a VPS sync node suffers from the exactly same chain-getting-stuck-while syncing symptom than a normal wallet on a PC.

The way out of this for you guys imo is to do the following:
- Have an up to date block explorer (good luck) and export a snapshot of all addresses and the coins in them.
- Choose or create a new wallet, do a premine on block 1 of a balance equal to the Ecash balance less a bunch of zeros and let someone do the swap for you privately by proving ownership of the old address.

Just make sure this time that the new wallet can import a bootstrap.dat in order to easily sort out issues in future.

Not true, just detach database at shutdown from a synced node to get transferable blk .dat files
3452  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 09:01:49 PM

Thanks Richie!
3453  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 08:16:44 PM
Between 80-140 a day per GBand right now, depending on how many are active. We're up over 80 now and it keeps increasing. That's over 40% of the total supply, plus there is still like 10% not swapped over yet
3454  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 07:59:08 PM
Variance Staking Explained
Now that we've all had a few days to get used to the new blockchain and wallet, there have been a few questions to how much people will stake on their deposits. While the changes are not over-the-top complicated, they do change the basic fundamentals of how rewards are calculated. I wanted to take a few minutes to explain exactly what Variance Staking means

First, I'll just copy the code from Github, which makes it pretty self explanatory when you see it singled out. Please note there are a few extra spaces that are not on Github, only because it was making emoticons with them on the forums. With that being said, let's get into it

Code:
int64_t GetProofOfStakeReward(int nHeight, int64_t nCoinAge, int64_t nFees)
{
    int64_t nMultiplier = 100 * CENT;
    int64_t nSubsidy = (((nHeight % 9) + ((nCoinAge % 100000) * 33 / (365 * 33 + 8 ))) + 1) * nMultiplier;
    a + b
return nSubsidy;
}

nMultiplier is simply used as a tweaking dial that can be turned up or down as needed to control inflation. Using 100 * CENT just gives us full coins, rather than decimals. The main reason is just so this is here later to change if needed, it really serves no purpose other than to do calculations in full coins

The line we are going to look at and break down is this:

int64_t nSubsidy = (((nHeight % 9) + ((nCoinAge % 100000) * 33 / (365 * 33 + 8 ))) + 1) * nMultiplier;

nSubsidy is the final reward that will be passed later on. nHeight is block number and nCoinAge is obvious

nHeight % 9 will take the block number, divide it by 9 and return the remainder as the value
This number will always be between 0 and 9 (the base rewards we have been seeing so far)

nCoinage % 100000 will allow a maximum coinage of 100,000 to be used, which is then multiplied by '(33 / (365 * 33 + 8 )' or 0.00273790757, to scale it down further and prevent compounding inflation
This will return a value somewhere between 0 and 273.790757488

The final +1 is there for one simple reason.. while doing test runs this problem never came up, but I noticed that it could potentially in the future.. If that last +1 was not there, as unlikely as it is, we could have run into a 'divide by zero' issue while calculating or splitting rewards, so that is just a failsafe to ensure we never return 0 as the value (this was originaly was nHeight calculation is in, but was later replaced. nHeight is only used now to fluctuate rewards for deposits that are not large enough to be scaled by coinage)

Last, as explained above, nMultiplier is only used to turn the final result into a full number, rather than a long reward amount with a staggering amount of decimal places

Hopefully this will clear up a bit on what you can expect both now and for the future as far as staking and GorillaBand rewards. The later in the life of the coin we get, with higher coinage, the faster GorillaBands will pay themselves off. At current rates for now, you are doubling your coins in less than a month

TL;DR: Rewards will be between 1.0 and about 284 for the life of the coin if no updates are required
3455  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 06:48:00 PM



Is BUCKS broken on c-cex? my coins have been stuck at 2 confirms for over a day.





Confirms come about 1 per min
3456  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 05:43:54 PM
36480 is probably the port you want to open, although your info makes me think ports are fine

Make sure GorillaBucks.conf has

maxconnections=999

That's a ghetto way, for now, to make sure you catch all possible peers, regardless of IPv

I should have just did that in the first place. But I'm so used to only having 8 connections or less with my other wallets, I was convinced it was my old router. Now I have 58 and climbing. Thanks.

Np, this is not your usual wallet. Expect more!  Wink
3457  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 05:29:22 PM
36480 is probably the port you want to open, although your info makes me think ports are fine

Make sure GorillaBucks.conf has

maxconnections=999

That's a ghetto way, for now, to make sure you catch all possible peers, regardless of IPv
3458  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 04:31:05 PM
So far today we've already been added to Bittrex and broken 80 GBands. That's over 40% of the entire supply in GorillaBands  Cool
3459  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 04:26:38 PM
Make sure your Band is still listed on the Network.

Edit:  If not listed in network, delete and create a new one with one click on Create Local.


How to check that and if it is listed, do I have to transfer all my coin to that address?

in your wallet click on the GorillaBands tab, then GorillaBand Network.  Look for your band.  When you setup your band the 5000 coins are sent to a collateral address automatically.  It is really just a one click on the Create Local that is located in the My GorillaBands tab.  The collateral address will be listed under the MY GorillaBands tab.  That is the address you will be looking for in the GorillaBands Network tab.

http://www2.zippyshare.com/v/d3m1DAGk/file.html

Here is my picture, and what to do with it next? is this okay or not? and why I don't gain any coin since the 30th? what can I do..

Remove and recreate
3460  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaBucks [BUCKS] | GorillaBand Masternodes 50/50 Split | Cloud Staking on: July 03, 2015, 04:25:36 PM

Thanks Richie!
Pages: « 1 ... 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 [173] 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 ... 513 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!