Author

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

legendary
Activity: 1022
Merit: 1001
http://www.zerohedge.com/news/2014-05-20/russia-reminds-us-its-not-over-test-fires-nuclear-missile?page=1



Ok I'm going to buy a few more Caps .

: D


Maybe we can buy survivalist gear with them?

Well, from memory most Caps are found in fallout shelters so its all looking good for this coin  Grin
hero member
Activity: 798
Merit: 1000
‘Try to be nice’
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
What is the interest rate for Bottlecaps?

I have never staked CAPs but I am pretty sure they are at 1%. In about two months the stake rate will gradually change to 200%.

PressTab if now i have coins in 1.5.2 wallet it will count my coin age and stake weight in new wallet right?

Yep, your coins are held on the block chain and the wallet simply holds the key to those coins. But you will need to update your wallet once the new version comes out, but you can still use the same wallet.dat.
hero member
Activity: 798
Merit: 1000
‘Try to be nice’
I've got a question :

Did Vinni add Caps to coincasino in the end ?


: D

Great work with all the commits Tranz .

Great design .
sr. member
Activity: 371
Merit: 250
What is the interest rate for Bottlecaps?

I have never staked CAPs but I am pretty sure they are at 1%. In about two months the stake rate will gradually change to 200%.

PressTab if now i have coins in 1.5.2 wallet it will count my coin age and stake weight in new wallet right?
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
What is the interest rate for Bottlecaps?

I have never staked CAPs but I am pretty sure they are at 1%. In about two months the stake rate will gradually change to 200%.
hero member
Activity: 658
Merit: 503
Monero Core Team
What is the interest rate for Bottlecaps?
legendary
Activity: 1330
Merit: 1000
Blockchain Developer

Awesome commits tonight.  That IPv6 bug has been really irritating me lately with other coins too, nice to see a fix.
legendary
Activity: 1540
Merit: 1060
May the force bit with you.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Quote
It compiles and runs fine for me.

Have you tried anything that would cause an exception that should be handled by the application?

Try solo mining or sometimes just "get peerinfo". Without exception handling enabled in the QT compile environment, Windows will throw out some strange errors and leave the coin thread running in the background.
Using meaning one has to restart the computer to get the coin daemon to start up properly again.

I am just offering my advice through what I learned with the KED relauch. I thought everything was compiled and running fine in Windows also until the exception bug reared its head.

Then again , I could be wrong , but I have set up a few compile environments since without issue using the instructions I gave.  Smiley

I don't solomine and RPC commands have always worked fine for me including getpeerinfo. I'll try the cmake route and see if there is any noticeable difference.  I don't know how I will be able to tell though if I haven't noticed problems yet anyways.

This is really interesting to know, thanks for linking to your guide I am going through it now.

So I don't use qtcreator I do it all from terminal. When I run "cmake bottlecaps-qt.pro" it returns CMake error: the source directory is a file not a directory.  Is cmake not directly replaceable with qmake?

-edit I will take this to PM so the thread doesn't get clogged up with technical details of my compiling.
legendary
Activity: 1064
Merit: 1000
Quote
It compiles and runs fine for me.

Have you tried anything that would cause an exception that should be handled by the application?

Try solo mining or sometimes just "get peerinfo". Without exception handling enabled in the QT compile environment, Windows will throw out some strange errors and leave the coin thread running in the background.
Usually meaning one has to restart the computer to get the coin daemon to start up properly again.

I am just offering my advice through what I learned with the KED relauch. I thought everything was compiled and running fine in Windows also until the exception bug reared its head.

Then again , I could be wrong , but I have set up a few compile environments since without issue using the instructions I gave.

Anyway, do  it however you want, I won't mention it again  Smiley
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Well, so far we're 2 for 2.

Pretty much follow this guide, but use bottlecaps instead of bitcoin. https://bitcointalksearch.org/topic/building-headless-bitcoin-and-bitcoin-qt-on-windows-149479

Unfortunately, this build will lead to exception issues, or rather lack of exception handling. I am unsure why these steps are not needed in the Bitcoin direct source, but every alt-coin I have compiled so far needs this and the cmake system for MOC files.

I wrote up a quick guide (Which is a modified version of above) along with a download of pre-compiled leveldb libraries and some of the DLL that will be needed. Even doing a static compile will require one dll.

http://scificointalk.com/index.php/topic,259.msg3937.html#msg3937

Most significant changes:

Install cmake:

Code:
Download Cmake: http://www.cmake.org/files/v2.8/cmake-2.8.12.2-win32-x86.exe
Run the install and check the option to add it to the path.
Switches when compiling the opensource QT environment:
Code:
In Windows Command prompt:
cd C:\Qt\4.8.5
configure -release -opensource -confirm-license -static -no-sql-sqlite -no-qt3support -exceptions -no-opengl -qt-zlib -qt-libpng -qt-libmng -no-libtiff -qt-libjpeg -no-dsp -no-vcproj -no-openssl -no-dbus -no-phonon -no-phonon-backend -no-multimedia -no-audio-backend -no-script -no-scripttools -no-declarative -no-declarative-debug -no-style-plastique -no-style-cleanlooks -no-style-motif -no-style-cde -nomake demos -nomake examples
mingw32-make
The QT compile will take some time, an hour+



You also need to make sure that the POSIX-DWARF version of mingw is in your path, not the latest version (which you only use for MSYS, hence the creation of the batch file to run it). You also need to make sure your compile kit in QT creator is pointing to the POSIX-DWARF version of mingw.

It compiles and runs fine for me.
legendary
Activity: 1064
Merit: 1000
Well, so far we're 2 for 2.

Pretty much follow this guide, but use bottlecaps instead of bitcoin. https://bitcointalksearch.org/topic/building-headless-bitcoin-and-bitcoin-qt-on-windows-149479

Unfortunately, this build will lead to exception issues, or rather lack of exception handling. I am unsure why these steps are not needed in the Bitcoin direct source, but every alt-coin I have compiled so far needs this and the cmake system for MOC files.

I wrote up a quick guide (Which is a modified version of above) along with a download of pre-compiled leveldb libraries and some of the DLL that will be needed. Even doing a static compile will require one dll.

http://scificointalk.com/index.php/topic,259.msg3937.html#msg3937

Most significant changes:

Install cmake:

Code:
Download Cmake: http://www.cmake.org/files/v2.8/cmake-2.8.12.2-win32-x86.exe
Run the install and check the option to add it to the path.
Switches when compiling the opensource QT environment:
Code:
In Windows Command prompt:
cd C:\Qt\4.8.5
configure -release -opensource -confirm-license -static -no-sql-sqlite -no-qt3support -exceptions -no-opengl -qt-zlib -qt-libpng -qt-libmng -no-libtiff -qt-libjpeg -no-dsp -no-vcproj -no-openssl -no-dbus -no-phonon -no-phonon-backend -no-multimedia -no-audio-backend -no-script -no-scripttools -no-declarative -no-declarative-debug -no-style-plastique -no-style-cleanlooks -no-style-motif -no-style-cde -nomake demos -nomake examples
mingw32-make
The QT compile will take some time, an hour+



You also need to make sure that the POSIX-DWARF version of mingw is in your path, not the latest version (which you only use for MSYS, hence the creation of the batch file to run it). You also need to make sure your compile kit in QT creator is pointing to the POSIX-DWARF version of mingw.
legendary
Activity: 3486
Merit: 1126
Come get your CAP!

Now with individual worker stats! See your submitted/invalid share as well as hashing speed!



http://www.hasher.ca

2% fee PROP reward system
DDoS Protected
High Performance Backend
Simple setup and usage
Auto ProfitSwitching Ports (beta testing now)

To mine:

Username: your CAP wallet address OR your generated Public Key
Password: anything
URL (vardiff): stratum+tcp://stratum.hasher.ca:3634

CAP go straight to your wallet once the block is confirmed. We don't hold your CAP!

Cheers and Happy Hashing!
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
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

Your probably using qt 5.2.1 instead of 4.8.5 that is required for bottlecaps.

Well, so far we're 2 for 2.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
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

Your probably using qt 5.2.1 instead of 4.8.5 that is required for bottlecaps.
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

I never compiled on windows before, but did you make sure to uncomment the section in the .pro file that says to do so for compiling on windows ?

Haha, no. To be honest i figured it was ready to go. I'll actually read the files next time. I'll check it out a little later.  Thanks for the help.
sr. member
Activity: 504
Merit: 254
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

I never compiled on windows before, but did you make sure to uncomment the section in the .pro file that says to do so for compiling on windows ?
Jump to: