Author

Topic: [ANN] BitBean is Now Bean Cash | First v3 POS | First 20MB Max Blocks | 7+ Yrs. - page 128. (Read 276084 times)

sr. member
Activity: 435
Merit: 250
"Bean Cash..More Than Digital Cash!"
Hello,

I posted awhile back about my wallet not syncing even with 9 connections.  I since tried again and cannot get it to sync.  I currently have 10 connections with no movement.  I am stuck on block 666917.  I ran a check and repair wallet with the results listed below.  Any help would be greatly appreciated.


12:44:59

checkwallet


12:45:00

{
"mismatched spent beans" : 1,
"amount in question" : 22630.30000000
}


12:45:32

repairwallet


12:45:32

{
"mismatched spent beans" : 1,
"amount affected by repair" : 22630.30000000
}


It would be easier for interactive diagnosis of what is going on, if you could join our Live IRC channel:  http://webchat.freenode.net/?channels=#teambean

sr. member
Activity: 393
Merit: 500
Hello,

I posted awhile back about my wallet not syncing even with 9 connections.  I since tried again and cannot get it to sync.  I currently have 10 connections with no movement.  I am stuck on block 666917.  I ran a check and repair wallet with the results listed below.  Any help would be greatly appreciated.


12:44:59

checkwallet


12:45:00

{
"mismatched spent beans" : 1,
"amount in question" : 22630.30000000
}


12:45:32

repairwallet


12:45:32

{
"mismatched spent beans" : 1,
"amount affected by repair" : 22630.30000000
}
member
Activity: 74
Merit: 100
Hi Crypto,

When you log in, you will see a BITB deposit address at the top of the page. Send BITB to that address to join the pool - after the beans mature for 6 hours you will begin receiving sprouting (stake) rewards.

I am also matching the first 10k users deposit into the pool as a bonus to the beta users.

Please let me know if you have any more questions!
member
Activity: 197
Merit: 11
Opened up the beta online PoS sprouting wallet for BITB:

http://bitbeanpool.com

About 40 slots still open.  Feel free to poke around - sprouting does work correctly.  Adding features, will keep feature timeline up to date on dashboard menu.
how do i deposit on your site
it doesnt work 4 me
sr. member
Activity: 435
Merit: 250
"Bean Cash..More Than Digital Cash!"
Point taken - the account is new, sure. I don't know of a way to change that besides posting around here, so I will continue to do that.

In terms of validity - yes, the site is in beta.  Yes, other sites have turned out to be scams.  I'll toss my own neck in the game here - I'll match 10k bitbeans to the users who fill the ~25 beta slots left open and sprout for >30 days.

Rather than speak down at somebody helping the cause you are working on, please offer suggestions when you see issues in the future.

Colin

The types of Services that are most needed are those that HIRE Bitbean, for example an online store that accepts BitBean for goods or services.

I applaud you stepping up and doing something to help, by building a service that utilizes Bitbean. So thank you for that.
member
Activity: 74
Merit: 100
Point taken - the account is new, sure. I don't know of a way to change that besides posting around here, so I will continue to do that.

In terms of validity - yes, the site is in beta.  Yes, other sites have turned out to be scams.  I'll toss my own neck in the game here - I'll match 10k bitbeans to the users who fill the ~25 beta slots left open and sprout for >30 days.

Rather than speak down at somebody helping the cause you are working on, please offer suggestions when you see issues in the future.

Colin
sr. member
Activity: 435
Merit: 250
"Bean Cash..More Than Digital Cash!"
Opened up the beta online PoS sprouting wallet for BITB:

http://bitbeanpool.com

About 40 slots still open.  Feel free to poke around - sprouting does work correctly.  Adding features, will keep feature timeline up to date on dashboard menu.

Nice of you to put a service together for Bitbean.

With that said, I always recommend for users to retain control of their private keys and run their own wallets on systems they control the keys. Once you send your Beans to a website/exchange, you risk loosing control/ownership of those Beans.

Perhaps it would engender trust if you weren't posting form a Newbie account at least?

There have been quite a few Beaners who lost Bitbeans that were on Cryptsy.
sr. member
Activity: 435
Merit: 250
"Bean Cash..More Than Digital Cash!"
after many tries i get a valid command list to compile BitBean for the CentOS-7-x86_64-Minimal-1511 System. maybe it helps other members :-) system is up to date with yum update and it install from your home Directory. you can also copy the executable to /usr/local/bin
Code:
yum -y install wget git autoconf automake gcc-c++ qrencode-devel libpng-devel libdb-cxx-devel libdb-devel libdb4-devel libdb4-cxx-devel
wget http://www.openssl.org/source/openssl-1.0.1j.tar.gz
tar xfz openssl-1.0.1j.tar.gz
cd openssl-1.0.1j
./config no-shared --prefix=/usr/local
make
make install
cd ..
wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.bz2
tar xfj protobuf-2.6.1.tar.bz2
cd protobuf-2.6.1
./configure --disable-shared --prefix=/usr/local
make
make install
cd ..
wget -O boost_1_59_0.tar.bz2 https://sourceforge.net/projects/boost/files/boost/1.59.0/boost_1_59_0.tar.bz2/download
tar xfj boost_1_59_0.tar.bz2
cd boost_1_59_0
./bootstrap.sh --prefix=/usr/local
./b2 --with-chrono --with-filesystem --with-program_options --with-system --with-thread --with-regex toolset=gcc link=shared stage
./b2 --with-chrono --with-filesystem --with-program_options --with-system --with-thread --with-regex toolset=gcc link=shared install
cd ..
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
git clone https://github.com/TeamBitBean/bitbean
cd bitbean/src/
make -f makefile.unix USE_UPNP=
strip BitBeand
mkdir /root/.BitBean
cp BitBeand /root/.BitBean/
cd /root/.BitBean
echo rpcuser=username > BitBean.conf
echo rpcpassword=userpassword >> BitBean.conf
./BitBeand -printtoconsole


Looks good, except you should be using libdb5.3-devel & libdbcxx5.3 (BitBean has always been built with BDB 5.3+)  5.3 is not backwards compatible with 4.8
hero member
Activity: 798
Merit: 1000
after many tries i get a valid command list to compile BitBean for the CentOS-7-x86_64-Minimal-1511 System. maybe it helps other members :-) system is up to date with yum update and it install from your home Directory. you can also copy the executable to /usr/local/bin
Code:
yum -y install wget git autoconf automake gcc-c++ qrencode-devel libpng-devel libdb-cxx-devel libdb-devel libdb4-devel libdb4-cxx-devel
wget http://www.openssl.org/source/openssl-1.0.1j.tar.gz
tar xfz openssl-1.0.1j.tar.gz
cd openssl-1.0.1j
./config no-shared --prefix=/usr/local
make
make install
cd ..
wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.bz2
tar xfj protobuf-2.6.1.tar.bz2
cd protobuf-2.6.1
./configure --disable-shared --prefix=/usr/local
make
make install
cd ..
wget -O boost_1_59_0.tar.bz2 https://sourceforge.net/projects/boost/files/boost/1.59.0/boost_1_59_0.tar.bz2/download
tar xfj boost_1_59_0.tar.bz2
cd boost_1_59_0
./bootstrap.sh --prefix=/usr/local
./b2 --with-chrono --with-filesystem --with-program_options --with-system --with-thread --with-regex toolset=gcc link=shared stage
./b2 --with-chrono --with-filesystem --with-program_options --with-system --with-thread --with-regex toolset=gcc link=shared install
cd ..
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
git clone https://github.com/TeamBitBean/bitbean
cd bitbean/src/
make -f makefile.unix USE_UPNP=
strip BitBeand
mkdir /root/.BitBean
cp BitBeand /root/.BitBean/
cd /root/.BitBean
echo rpcuser=username > BitBean.conf
echo rpcpassword=userpassword >> BitBean.conf
./BitBeand -printtoconsole
member
Activity: 74
Merit: 100
Opened up the beta online PoS sprouting wallet for BITB:

http://bitbeanpool.com

About 40 slots still open.  Feel free to poke around - sprouting does work correctly.  Adding features, will keep feature timeline up to date on dashboard menu.
sr. member
Activity: 435
Merit: 250
"Bean Cash..More Than Digital Cash!"
Also, wallet will not sync.  I got the latest of the website like 30 mins ago.  I've tried without the .conf file and with the .conf posted on bitbean website neither sync.

You can download the BitBean blockchain from 3/15/16 at CryptoChainer.com.  Also, there is a way to display different denominations in Settings / Main,  change it to BITB...


This site has a sync'ed data directory Smiley



steve321 and Gazzatron...thank you guys for holding down the fort and helping other Beaners while I've been very busy.
sr. member
Activity: 435
Merit: 250
"Bean Cash..More Than Digital Cash!"
hmmm i was able to fix it by deleting everyting then pasting the wallet.dat afterwards.. but everytimme i turn off my pc.. and turn on again i am getting that error again..  any idea?

Make sure you are closing down BitBean-qt, by using the File -> Exit option and not closing it by clicking the "X" in the of the OS App Window control. You can also close down BitBean by accessing the context-menu...Right Mouse Button click anywhere in BitBean-qt where there is an empty space..it will bring up a menu, then select "Exit".

I am aware of this problem. It is only happening on Windows. NTFS is not as durable as Linux file systems. I'm working on improvements for future BitBean release to remove so much dependency for data integrity from the host operating system.

Best Regards,

Shawn Kent (aka Bitbeaner)
Director of Operations, Project Manager, Lead Developer
Bean Core, Team Bean, BitBean
www.bitbean.org
member
Activity: 91
Merit: 10
hmmm i was able to fix it by deleting everyting then pasting the wallet.dat afterwards.. but everytimme i turn off my pc.. and turn on again i am getting that error again..  any idea?

If you are closing the wallet successfully before shutting down the system then it could be a virus
on the pc. Copy the /appdata/roaming/bitbean (including the bitbean-qt.exe) onto a usb drive
and load it back down on a different pc. If this works then it is definitely the original pc at fault,
not the wallet.

newbie
Activity: 21
Merit: 0
hmmm i was able to fix it by deleting everyting then pasting the wallet.dat afterwards.. but everytimme i turn off my pc.. and turn on again i am getting that error again..  any idea?
member
Activity: 91
Merit: 10
Also, wallet will not sync.  I got the latest of the website like 30 mins ago.  I've tried without the .conf file and with the .conf posted on bitbean website neither sync.

You can download the BitBean blockchain from 3/15/16 at CryptoChainer.com.  Also, there is a way to display different denominations in Settings / Main,  change it to BITB...


This site has a sync'ed data directory Smiley

member
Activity: 91
Merit: 10
i can;t seem to open my wallet.. error is "error loading blkindex.dat"

Use a process of elimination to resolve:

Rename the original data directory (appdata/roaming/bitbean on windows) and
create a new folder appdata/roaming/bitbean

Checking the database integrity:
   copy into this the contents of original data directory without the wallet.dat
   fire up the bitbean wallet.
   A new wallet.dat along with a new wallet address should be created.

Checking the original wallet.dat:
   Copy only the wallet.dat into the empty bitbean folder
   Fire up the bitbean wallet
   This would start a re-sync and may take some time.
   I think there are some up to date sync'ed data directories available to cut
   down the time it takes to sync.

To get back to where you were, delete the new bitbean directory and
rename your old folder back to bitbean.

To protect yourself in the future, backup the bitbean directory as well as
wallet.dat. You can then recover from that if your wallet goes tits up.

Hope this helps

newbie
Activity: 21
Merit: 0
i can;t seem to open my wallet.. error is "error loading blkindex.dat"
hero member
Activity: 798
Merit: 1000
BitBeaner reported some posts ago the possible selling of BitB that was on Cryptsy.... Found this news but regarding Unombtanium ..

http://www.altcointoday.com/cryptsy-funds-has-moved-to-a-bittrex-wallet/


no or not all, this are the bitbean adresses of cryptsy.
https://chainz.cryptoid.info/bitb/wallet.dws?9338.htm

my coins are still in this wallet

$65k marketcap for bitbean is a bad joke, but why not. I can pick up some of this cheap coins. many other crapcoins have more capitalization, it's a good chance.
sr. member
Activity: 435
Merit: 250
"Bean Cash..More Than Digital Cash!"
Sorry, I have not been here to post much lately, have been very busy!

Expect many developments coming out before the end of the month.

The best way to keep abreast of some of the goings on are to visit our official IRC channel:  http://webchat.freenode.net/?channels=#teambean

I'm available on IRC some of the time, but won't be checking in here too much in the coming weeks. Really trying to nail down and finish some of the many projects on going currently.

If a matter is urgent, best to reach me via email:  [email protected]

BitB is a bargain right now!

Best Regards,

Shawn Kent (aka Bitbeaner)
Director of Operations, Project Manager, Lead Developer
Bean Core, Team Bean, BitBean
www.bitbean.org
Jump to: