Bitcoin Forum
May 04, 2024, 06:49:34 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 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 »
  Print  
Author Topic: 🚀🚀🚀🚀 | GorillaBucks | Custom Multipool LIVE | Social Media Network | 💵🐵💵  (Read 133302 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
MoreBloodWine
Legendary
*
Offline Offline

Activity: 1050
Merit: 1001


View Profile
July 04, 2015, 12:01:43 AM
 #2521

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.


To be decided...
1714805374
Hero Member
*
Offline Offline

Posts: 1714805374

View Profile Personal Message (Offline)

Ignore
1714805374
Reply with quote  #2

1714805374
Report to moderator
1714805374
Hero Member
*
Offline Offline

Posts: 1714805374

View Profile Personal Message (Offline)

Ignore
1714805374
Reply with quote  #2

1714805374
Report to moderator
1714805374
Hero Member
*
Offline Offline

Posts: 1714805374

View Profile Personal Message (Offline)

Ignore
1714805374
Reply with quote  #2

1714805374
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714805374
Hero Member
*
Offline Offline

Posts: 1714805374

View Profile Personal Message (Offline)

Ignore
1714805374
Reply with quote  #2

1714805374
Report to moderator
1714805374
Hero Member
*
Offline Offline

Posts: 1714805374

View Profile Personal Message (Offline)

Ignore
1714805374
Reply with quote  #2

1714805374
Report to moderator
1714805374
Hero Member
*
Offline Offline

Posts: 1714805374

View Profile Personal Message (Offline)

Ignore
1714805374
Reply with quote  #2

1714805374
Report to moderator
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 12:02:42 AM
 #2522

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

iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 12:04:58 AM
 #2523

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

MoreBloodWine
Legendary
*
Offline Offline

Activity: 1050
Merit: 1001


View Profile
July 04, 2015, 12:46:18 AM
 #2524

@IGS: But why all of a sudden would I be getting this "error" now when everything's ran fine up to three clients since launch ?

To be decided...
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 01:42:44 AM
 #2525

It's a known, but sporadic, issue that I'm working on nailing down

MoreBloodWine
Legendary
*
Offline Offline

Activity: 1050
Merit: 1001


View Profile
July 04, 2015, 03:03:17 AM
 #2526

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 ?

To be decided...
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 03:08:09 AM
 #2527

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

Ricky Petrovich
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
July 04, 2015, 08:55:50 AM
 #2528

For all that could be interested:

Proposed TEETH fork

https://bitcointalk.org/index.php?topic=1108502.msg11787044#msg11787044

Waiting for you there.

Please be respectful to Spots and don't post in this thread about this new coin.
MoreBloodWine
Legendary
*
Offline Offline

Activity: 1050
Merit: 1001


View Profile
July 04, 2015, 02:26:54 PM
 #2529

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
Well without a Linux install like bitcoin.org offers I don't know that I could get it set up right at vultr. So if I offered a bit of a payment, or maybe u do me a solid. Is it something you would consider please ?

That being said, I don't even have my bands running and haven't been for the past 2 days because I need em on LINUX and can't get em there without the pre-compiled stuff like bitcoin.org offers.

To be decided...
baldpope
Full Member
***
Offline Offline

Activity: 144
Merit: 100



View Profile
July 04, 2015, 03:13:38 PM
 #2530

Thanks for the technicals.  Any answer as to whether MNs or staking 5000 is the best at the moment?

Anyone got any figures for how much the Gorillabands are making?  baldpope?


I've updated the thread, but in the first 24hr period for the Gorillaband setup, we earned 24.5 BUCKS.

Follow the co-op thread and ask questions here: https://bitcointalk.org/index.php?topic=1107588.msg11778152#msg11778152
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 04:36:12 PM
 #2531

Added a second block explorer and paper wallets today. Thanks dasource  Wink



kcanup
Legendary
*
Offline Offline

Activity: 1484
Merit: 1000


View Profile
July 04, 2015, 04:54:06 PM
 #2532

@spots I have btc withdrawal waiting for admin approval in gorilla exchange, how long it gonna take? Its already 6 hours?  Roll Eyes
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 04:55:35 PM
 #2533

@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

kcanup
Legendary
*
Offline Offline

Activity: 1484
Merit: 1000


View Profile
July 04, 2015, 04:56:24 PM
 #2534

@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
Thanks  Smiley
wgd
Legendary
*
Offline Offline

Activity: 1815
Merit: 1005


View Profile
July 04, 2015, 05:23:55 PM
 #2535

iGotSpots you can write off on my pm? And reasonably conclude this, I'll be happy with anything;]


            ▄██▄▄
        ▄▄█████████▄
    ▄▄████████████████▄▄
 ▄▄██████████████████████▄▄
 ▀█████████▀▀   ▀▀████████▀▀
█▄▄ ▀▀█▀▀           ▀▀█▀ ▄▄██
█████▄     ▄▄███▄▄     ██████
██████    ▄▀▀███▀▀▄    ██████
██████    ███▄ ▄███    ██████
██████    ████ ████    ██████
██████     ▀▀█ █▀▀     ██████
███████▄▄              ██████
██████████▄▄    ▄▄     ██████
 ▀▀██████████▄▄███     ███▀▀
     ▀████████████     ▀
        ▀█████████
           ▀▀██▀
 
qortal

Decentralized Internet
Infrastructure of the Future
 
████████████
           ▄▄██████▄▄                       ▄▄█████▄▄
     ▄▄█████████████▄▄                ▄▄█████████████▄▄
   ██████████▀▀█████████▄          ▄██████████████▀▀▀████▄
   ████▀▀         ▀▀ ████          █████████▀▀▀     ▄█████
   ███               ▀███          ████▀▀          ▄██████
   ██▀   ▄███  ███    ███          █████▄▄         ███████
   ██    ▀██▀  ▀█▀    ▀██          █████████▄     ████████
   ██  ▀▄▄       ▄▄█▀ ▄██          ██████████▄   █████████
   ▀███▄▄██████████▄▄███▀   ▄▄▄▄   ▀███████████▄▄████████▀

██▄▄  ▀█████████████▀▀  ▄▄████████▄▄  ▀▀█████████████▀▀  ▄▄███
█████▄▄   ▀█████▀▀   ▄▄███████████████▄   ▀▀█████▀▀   ▄███████
▀████████▄▄  ▀   ▄▄████████▀▀  ▀▀████████▄▄   ▀   ▄▄████████▀▀
   ▀▀████████▄▄████████▀▀  ▄▄██▄▄  ▀▀████████▄▄▄█████████▀
       ▀▀██████████▀▀  ▄▄██████████▄▄  ▀▀████████████▀▀
           ▀▀██▀▀  ▄▄███████████▀▀▀████▄▄ ▀▀█████▀▀
                   ████▀▀█████▀      ▀███
                   ████▄  ▀▀▀█      ▄████
                   ████  ▀          █████
                   █████▄          ▄█████
                   ██████▄        ▄██████
                   ████▀        ▄████████
                    ▀▀████▄▄▄█████████▀▀
                         ▀▀██████▀▀
 
████████████
 
     ▄▄▄██▄▄▄
▄▄██████████████▄▄▄
▀▀████████████████▀
   ▄ ▀▀████▀▀ ▄ ██
   ██▄▄    ▄▄██ ██
   ████████████ ██
    ██████████  ▀▀
     ▀▀▀▀▀▀▀▀
 
QORTAL PROJECT WIKI

   
██▀▀▀█▀▀▀█▀▀▀█▀▀▀▀▀▀▀▀█▀▀▀█▀▀▀█▀▀▀█
█ █▀▀▀█   █▀ ▄██████▄ ▀█   █▀▀▀█▄ █
██▄   █▀▀  ██▀  █   ▀██ ▀▀██   ██▀█
█ █████   ██    █     ██   █████  █
██▀   █▄▄ █   ▄███▄    █ ▄██   ██▄█
█▀█▄▄▄█   █   ▀███▀    █   █▄▄▄█▀ █
█ █  ▀█▄▄ ██    █      █  ▄█▀▀▀█▄ █
███  ▄█▀▀  ▀██▄ █ ▄▄   █ ▀▀█   ██▀█
█ █▀▀██   █▄  ▀███▀█   █   ██▀▀█  █
███   █████    ▄▄  █  ▄█ ███   ████
█ █▄▄██   ██▄▄█▀   █▄██▀   █▄▄▄█  █
██▄▄▄▄█▄▄▄█▄▄▄▄█▄▄█▄▄▄▄▄▄▄▄█▄▄▄█▄▄█
 
QORTECTOR

Obtain a QORTector Device...
Enjoy Free Internet... eventually.
  ....JOIN....
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 05:46:38 PM
 #2536

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

iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 05:51:33 PM
 #2537

dasource has just set up a list of GorillaBands that you can now view remotely


MoreBloodWine
Legendary
*
Offline Offline

Activity: 1050
Merit: 1001


View Profile
July 04, 2015, 07:01:50 PM
 #2538

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$

To be decided...
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
July 04, 2015, 07:02:36 PM
 #2539

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/

MoreBloodWine
Legendary
*
Offline Offline

Activity: 1050
Merit: 1001


View Profile
July 04, 2015, 07:37:44 PM
 #2540

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/
When done will it give me a gorillabucksd file or somethin ?

To be decided...
Pages: « 1 ... 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 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 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!