Author

Topic: Bottlecaps 2.1 UPDATE REQUIRED - HARDFORK JULY 4 2014 to 200% Annual PoS - page 128. (Read 388610 times)

hero member
Activity: 786
Merit: 1000
Are these commits (fixes, builds, whatever) ready to compile and test? Or are they still being coded.  As you can tell, I'm not a coder.

I won't be releasing a production build until I am completely done. But yes they always should be compatible with the current network. so you can download and compile away. Just let us know if you find anything a miss.  

Thanks!

This is my error message when I try to compile.  I've tried searching for some type of dependency (google search etc...,) but this is my first time with QT creator, so I have no idea what I'm doing Tongue

http://imgur.com/7FdPETd
legendary
Activity: 1540
Merit: 1060
May the force bit with you.
Are these commits (fixes, builds, whatever) ready to compile and test? Or are they still being coded.  As you can tell, I'm not a coder.

I won't be releasing a production build until I am completely done. But yes they always should be compatible with the current network. so you can download and compile away. Just let us know if you find anything a miss. 

Thanks!
hero member
Activity: 786
Merit: 1000
Are these commits (fixes, builds, whatever) ready to compile and test? Or are they still being coded.  As you can tell, I'm not a coder.
legendary
Activity: 1540
Merit: 1060
May the force bit with you.
I can't activate coin control on the mac. when I click the checkbox, I can' t accept the changes

Hmm ok, is this based on the latest commit?

yes from your github, I pull the latest commit and compiled. I see the the option but when I click on it to activate it, I can't apply the changes.

Also, do we need to resync the block chain after those changes? I get an error saying can't load blkindex.dat when I use the version from your github

I'll compile on windows and see if it happens on windows too. I helped with the coin control commit and it worked fine for me on windows, but I will build again and test.

You do need to resync because of this commit https://github.com/Tranz5/bottlecaps/commit/ed8833b8c5df86490fadf77760b11afa9a263547

Looks like something got mixed up when the commit was made for coin control.

The way options /qt/optionsdialog.cpp is now:
Code:
    /* Window */
#ifndef Q_OS_MAC
    mapper->addMapping(ui->minimizeToTray, OptionsModel::MinimizeToTray);
    mapper->addMapping(ui->minimizeOnClose, OptionsModel::MinimizeOnClose);
    mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures);
#endif

    /* Display */
    mapper->addMapping(ui->lang, OptionsModel::Language);
    mapper->addMapping(ui->unit, OptionsModel::DisplayUnit);
    mapper->addMapping(ui->displayAddresses, OptionsModel::DisplayAddresses);

The way /qt/optionsdialog.cpp should be:
Code:
    /* Window */
#ifndef Q_OS_MAC
    mapper->addMapping(ui->minimizeToTray, OptionsModel::MinimizeToTray);
    mapper->addMapping(ui->minimizeOnClose, OptionsModel::MinimizeOnClose);
#endif

    /* Display */
    mapper->addMapping(ui->lang, OptionsModel::Language);
    mapper->addMapping(ui->unit, OptionsModel::DisplayUnit);
    mapper->addMapping(ui->displayAddresses, OptionsModel::DisplayAddresses);
    mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures);


ahh thanks presstab, I'll give that a try

EDIT: that did it Smiley

Thanks guys, sorry about that, fixed in github.
sr. member
Activity: 504
Merit: 254
I can't activate coin control on the mac. when I click the checkbox, I can' t accept the changes

Hmm ok, is this based on the latest commit?

yes from your github, I pull the latest commit and compiled. I see the the option but when I click on it to activate it, I can't apply the changes.

Also, do we need to resync the block chain after those changes? I get an error saying can't load blkindex.dat when I use the version from your github

I'll compile on windows and see if it happens on windows too. I helped with the coin control commit and it worked fine for me on windows, but I will build again and test.

You do need to resync because of this commit https://github.com/Tranz5/bottlecaps/commit/ed8833b8c5df86490fadf77760b11afa9a263547

Looks like something got mixed up when the commit was made for coin control.

The way options /qt/optionsdialog.cpp is now:
Code:
    /* Window */
#ifndef Q_OS_MAC
    mapper->addMapping(ui->minimizeToTray, OptionsModel::MinimizeToTray);
    mapper->addMapping(ui->minimizeOnClose, OptionsModel::MinimizeOnClose);
    mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures);
#endif

    /* Display */
    mapper->addMapping(ui->lang, OptionsModel::Language);
    mapper->addMapping(ui->unit, OptionsModel::DisplayUnit);
    mapper->addMapping(ui->displayAddresses, OptionsModel::DisplayAddresses);

The way /qt/optionsdialog.cpp should be:
Code:
    /* Window */
#ifndef Q_OS_MAC
    mapper->addMapping(ui->minimizeToTray, OptionsModel::MinimizeToTray);
    mapper->addMapping(ui->minimizeOnClose, OptionsModel::MinimizeOnClose);
#endif

    /* Display */
    mapper->addMapping(ui->lang, OptionsModel::Language);
    mapper->addMapping(ui->unit, OptionsModel::DisplayUnit);
    mapper->addMapping(ui->displayAddresses, OptionsModel::DisplayAddresses);
    mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures);


ahh thanks presstab, I'll give that a try

EDIT: that did it Smiley
member
Activity: 69
Merit: 10
Hi Dear Administrator and Owner BottlecapsCoin Currency.

I Have Business Proposal For You -
We have Anonymous VPN Service and Partnership 30% to all pays your client.
We Add Your Currency - BottlecapsCoin to My VPN Service.
We have all CryptoCoin money in our vpn service site.

Our Anonymous Vpn Service is Here - http://in-disguise.com/

We want add banner or stick on your Site - With Your Referral Url - You have 30 % all payments your clients.
www.bottlecaps
With Your Referral Url - You have 30 % all payments your clients.

Please Contact me, i want to talk with you for advertise.

ICQ: 6906911
E-mail: [email protected]
Jabber: [email protected]
Skype: In-Disguise-VPN


Please Add my Contact - I Very Want Talk With You and have business with you!!!
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
I can't activate coin control on the mac. when I click the checkbox, I can' t accept the changes

Hmm ok, is this based on the latest commit?

yes from your github, I pull the latest commit and compiled. I see the the option but when I click on it to activate it, I can't apply the changes.

Also, do we need to resync the block chain after those changes? I get an error saying can't load blkindex.dat when I use the version from your github

I'll compile on windows and see if it happens on windows too. I helped with the coin control commit and it worked fine for me on windows, but I will build again and test.

You do need to resync because of this commit https://github.com/Tranz5/bottlecaps/commit/ed8833b8c5df86490fadf77760b11afa9a263547

Looks like something got mixed up when the commit was made for coin control.

The way options /qt/optionsdialog.cpp is now:
Code:
    /* Window */
#ifndef Q_OS_MAC
    mapper->addMapping(ui->minimizeToTray, OptionsModel::MinimizeToTray);
    mapper->addMapping(ui->minimizeOnClose, OptionsModel::MinimizeOnClose);
    mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures);
#endif

    /* Display */
    mapper->addMapping(ui->lang, OptionsModel::Language);
    mapper->addMapping(ui->unit, OptionsModel::DisplayUnit);
    mapper->addMapping(ui->displayAddresses, OptionsModel::DisplayAddresses);

The way /qt/optionsdialog.cpp should be:
Code:
    /* Window */
#ifndef Q_OS_MAC
    mapper->addMapping(ui->minimizeToTray, OptionsModel::MinimizeToTray);
    mapper->addMapping(ui->minimizeOnClose, OptionsModel::MinimizeOnClose);
#endif

    /* Display */
    mapper->addMapping(ui->lang, OptionsModel::Language);
    mapper->addMapping(ui->unit, OptionsModel::DisplayUnit);
    mapper->addMapping(ui->displayAddresses, OptionsModel::DisplayAddresses);
    mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures);
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Hi guys.

as i have never mined POS coins before, please advise if i need to have my wallet running the entire time to be able to stake, or do i only need the coins in my balance without it running for the required time?

help a noob out please,

thank you.

Ideally you keep it running all the time, but if you can't do that, have it open once a month for a day or so and you should get all the stake you are supposed to get.

So what is the main difference? Keeping client run 24/7 is far more cumbersome than opening it once a month. I've been always thinking that you get stake for the time your wallet is online and unlocked.

Read this article on PoS for HBN it might clarify a few things http://wiki.hobonickels.info/index.php?title=Proof_of_Stake

Think of PoS not as something that will happen automatically after X amount of days, but rather as miners that are activated after X amount of days. Just like PoW mining, PoS mining you are competing with others to get the block. The longer you have your miners on the network, the higher the chances are that you will eventually get a block.
hero member
Activity: 676
Merit: 500
Hi guys.

as i have never mined POS coins before, please advise if i need to have my wallet running the entire time to be able to stake, or do i only need the coins in my balance without it running for the required time?

help a noob out please,

thank you.

Ideally you keep it running all the time, but if you can't do that, have it open once a month for a day or so and you should get all the stake you are supposed to get.

So what is the main difference? Keeping client run 24/7 is far more cumbersome than opening it once a month. I've been always thinking that you get stake for the time your wallet is online and unlocked.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
I can't activate coin control on the mac. when I click the checkbox, I can' t accept the changes

Hmm ok, is this based on the latest commit?

yes from your github, I pull the latest commit and compiled. I see the the option but when I click on it to activate it, I can't apply the changes.

Also, do we need to resync the block chain after those changes? I get an error saying can't load blkindex.dat when I use the version from your github

I'll compile on windows and see if it happens on windows too. I helped with the coin control commit and it worked fine for me on windows, but I will build again and test.

You do need to resync because of this commit https://github.com/Tranz5/bottlecaps/commit/ed8833b8c5df86490fadf77760b11afa9a263547
sr. member
Activity: 504
Merit: 254
I can't activate coin control on the mac. when I click the checkbox, I can' t accept the changes

Hmm ok, is this based on the latest commit?

yes from your github, I pull the latest commit and compiled. I see the the option but when I click on it to activate it, I can't apply the changes.

Also, do we need to resync the block chain after those changes? I get an error saying can't load blkindex.dat when I use the version from your github
hero member
Activity: 938
Merit: 1000
www.multipool.us
Hi guys.

as i have never mined POS coins before, please advise if i need to have my wallet running the entire time to be able to stake, or do i only need the coins in my balance without it running for the required time?

help a noob out please,

thank you.

Ideally you keep it running all the time, but if you can't do that, have it open once a month for a day or so and you should get all the stake you are supposed to get.
hero member
Activity: 938
Merit: 1000
www.multipool.us
CAP is way undervalued.

CAP has 3.5 million coins. This is less than DRK (price is 0.01 btc), less than VTC (price is 0.0025), less than HBN (price is 0.00025000).

CAP price is only 0.00004000? CAP is worth a lot more, at least 6x from here if not 100x!!

Lots of upside potential!!

There is a huge amount of upside potential.  Even heavily premined obvious scamcoins have larger market cap than CAP right now.

I think CAP could easily attain a market cap of $500k which would be a 10x increase.
sr. member
Activity: 373
Merit: 250
You seem to work endlessly Tranz. I hope this is a passion / hobby / FUN most of all for you
legendary
Activity: 1540
Merit: 1060
May the force bit with you.
Commits for the weekend:

Change notificator to use message
https://github.com/Tranz5/bottlecaps/commit/49aa486eeff575cc416ddfae0dae687044b76341

Split trayIcon and trayIconMenu. Init menu after fully loaded:
https://github.com/Tranz5/bottlecaps/commit/7100ca314f54d9190e977de6168410747682f157
https://github.com/Tranz5/bottlecaps/commit/8b9c237d0a3648ae8040ef9611bbb28429d9dd43

Update fee message:
https://github.com/Tranz5/bottlecaps/commit/1cc34e62828bdbf6d3af507054ba0738b0213b53

Change Encrypt Status Tip:
https://github.com/Tranz5/bottlecaps/commit/4bbc04fba79b6ab0032c703c149cd20221642a34

Update GUI (Add new alert bar,add client to model)
https://github.com/Tranz5/bottlecaps/commit/d7f61e5802aa5cc92bb572d8c543b0bff2e99d56
https://github.com/Tranz5/bottlecaps/commit/8095545c8eb3cd2946ba9f7c36d43cf80dda4bb0
https://github.com/Tranz5/bottlecaps/commit/8c0e85dee865a96bdd13878db78146b7d0c0b792
https://github.com/Tranz5/bottlecaps/commit/a2ca7e1f72d4624d607d99ae7cef0140113e572c
https://github.com/Tranz5/bottlecaps/commit/0e2e9834dd659a3b07bd4bce953260f1055dd66f

Changes to numBlocks:
https://github.com/Tranz5/bottlecaps/commit/6a7954d04b43c75836d954d690222b179af94ebe

Small Changes to transactionalpage:
https://github.com/Tranz5/bottlecaps/commit/3fbf859a514a61d513241a59dd633bc309d1c82e

Added setClipboard to Guiutil:
https://github.com/Tranz5/bottlecaps/commit/e972719cca73e9bb2253707bf2cd02f1671e1f3f

ToolTipToRichTextFilter::eventFilter Fix:
https://github.com/Tranz5/bottlecaps/commit/c6da2919f3f84a30fd60209d0af5252af51f63a6

URI Fixs:
https://github.com/Tranz5/bottlecaps/commit/f36076f4f50278b95f2b354434e9c63ead69d2a2
https://github.com/Tranz5/bottlecaps/commit/d1f3281c939d74f59da85241e13dcbe4013cc815
legendary
Activity: 1540
Merit: 1060
May the force bit with you.
I can't activate coin control on the mac. when I click the checkbox, I can' t accept the changes

Hmm ok, is this based on the latest commit?
full member
Activity: 178
Merit: 100
Someone needs to crack the skinable wallet idea. Basically winamp style for QT's that would be slick.
QML
hero member
Activity: 826
Merit: 1001
@Bit_John
Someone needs to crack the skinable wallet idea. Basically winamp style for QT's that would be slick.
member
Activity: 65
Merit: 10
One great feature I have seen out there recently was the built in  block explorer feature that would be a slick addition.

This was going to be an addition to HBN version 1.5, Then maybe later I will put it in CAPS Wink

I'll be looking forward to seeing it in caps.
sr. member
Activity: 504
Merit: 254
I can't activate coin control on the mac. when I click the checkbox, I can' t accept the changes
Jump to: