BitShares Forum

Main => General Discussion => Topic started by: wuyanren on February 16, 2016, 03:15:28 pm

Title: Today's wallet seems to be very not smooth
Post by: wuyanren on February 16, 2016, 03:15:28 pm
Yesterday seems to be like this, some people know what is the reason?
Title: Re: Today's wallet seems to be very not smooth
Post by: dannotestein on February 16, 2016, 03:20:13 pm
From posts I saw on telegram, it's possible it could be related to higher number of transactions we're experiencing lately. But that's purely a guess. I noticed about 10 hours ago that it was slow for me.
Title: Re: Today's wallet seems to be very not smooth
Post by: Troglodactyl on February 16, 2016, 03:35:41 pm
BitShares 2.0.160208 seems fine to me running locally.  Any particular areas you're noticing issues?
Title: Re: Today's wallet seems to be very not smooth
Post by: wuyanren on February 16, 2016, 03:58:26 pm
I think we should find out the reason, otherwise the wallet can not be used.
Title: Re: Today's wallet seems to be very not smooth
Post by: Troglodactyl on February 16, 2016, 04:01:45 pm
Finding the reason would be easier if you provided more details.  Are you using a hosted wallet instance, or where are you accessing the wallet?  Are you having issues loading the entire page, or is slow navigation within the wallet the problem, or is it just not updating responsively with data from the chain?
Title: Re: Today's wallet seems to be very not smooth
Post by: wuyanren on February 16, 2016, 04:03:44 pm
https://bitshares.dacplay.org/ Visit here
Title: Re: Today's wallet seems to be very not smooth
Post by: noisy on February 16, 2016, 04:14:39 pm
I had the same problem on https://bitshares.openledger.info/ and https://bitshares.org/wallet
Title: Re: Today's wallet seems to be very not smooth
Post by: bytemaster on February 16, 2016, 04:40:09 pm
Last I heard the OL server has CPU overheating issues.  The number of active connections is also growing.

The next release should include more options for servers.

The actual network is running fine.
Title: Re: Today's wallet seems to be very not smooth
Post by: BTSdac on February 16, 2016, 04:52:57 pm
Last I heard the OL server has CPU overheating issues.  The number of active connections is also growing.

The next release should include more options for servers.

The actual network is running fine.
local full client can easy run by local running witness_node +GUI, 
but it need to re-index by every time restart witness_node .  it is there any way to void re-index when restart witness_node
Title: Re: Today's wallet seems to be very not smooth
Post by: bytemaster on February 16, 2016, 05:09:08 pm
Last I heard the OL server has CPU overheating issues.  The number of active connections is also growing.

The next release should include more options for servers.

The actual network is running fine.
local full client can easy run by local running witness_node +GUI, 
but it need to re-index by every time restart witness_node .  it is there any way to void re-index when restart witness_node

The reindexing issue has been fixed with the latest release.
Title: Re: Today's wallet seems to be very not smooth
Post by: oldmine on February 16, 2016, 05:21:38 pm
The number of active connections is also growing.

A great problem to have!  +5%
Title: Re: Today's wallet seems to be very not smooth
Post by: puppies on February 16, 2016, 10:36:17 pm
I've also got a wallet set up at https://dele-puppy.com or wss://dele-puppy.com/ws  The faucet doesn't seem to be giving referrers the proper percent so please don't use it to refer new users, as you may not get paid.
Title: Re: Today's wallet seems to be very not smooth
Post by: abit on February 16, 2016, 11:03:35 pm
Last I heard the OL server has CPU overheating issues.  The number of active connections is also growing.

The next release should include more options for servers.

The actual network is running fine.
local full client can easy run by local running witness_node +GUI, 
but it need to re-index by every time restart witness_node .  it is there any way to void re-index when restart witness_node
I'd rather like to start with --replay-blockchain every time. It avoids most of strange issues from happening.
It cost about 5 minutes if you're running with Release build.
Title: Re: Today's wallet seems to be very not smooth
Post by: puppies on February 16, 2016, 11:14:24 pm
Last I heard the OL server has CPU overheating issues.  The number of active connections is also growing.

The next release should include more options for servers.

The actual network is running fine.
local full client can easy run by local running witness_node +GUI, 
but it need to re-index by every time restart witness_node .  it is there any way to void re-index when restart witness_node
I'd rather like to start with --replay-blockchain every time. It avoids most of strange issues from happening.
It cost about 5 minutes if you're running with Release build.

I agree.  I'm my scripts that start my client I always start with replay.  It is nice to not have to if you don't want to though.  Especially on my ubuntu 15.10 machines.
Title: Re: Today's wallet seems to be very not smooth
Post by: luckybit on February 17, 2016, 03:27:23 am
What are the steps to setting up a wallet?
Title: Re: Today's wallet seems to be very not smooth
Post by: Troglodactyl on February 17, 2016, 04:00:11 am
What are the steps to setting up a wallet?

git clone https://github.com/bitshares/bitshares-2.git
cd bitshares-2
git checkout 2.0.160216
git submodule update --init --recursive
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_TESTS=OFF .
make
cd programs/witness_node
./witness_node

git clone https://github.com/bitshares/bitshares-2-ui.git
cd bitshares-2-ui
cd cli; npm install
cd ../dl; npm install
cd ../ios; npm install
cd ../web; npm install
npm start

Comment if you run into issues, but that's the basic process...
Title: Re: Today's wallet seems to be very not smooth
Post by: svk on February 17, 2016, 06:10:44 am
What are the steps to setting up a wallet?

git clone https://github.com/bitshares/bitshares-2.git
cd bitshares-2
git checkout 2.0.160216
git submodule update --init --recursive
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_TESTS=OFF .
make
cd programs/witness_node
./witness_node

git clone https://github.com/bitshares/bitshares-2-ui.git
cd bitshares-2-ui
cd cli; npm install
cd ../dl; npm install
cd ../ios; npm install
cd ../web; npm install
npm start

Comment if you run into issues, but that's the basic process...
You only need to do npm install in the web and dl folders.
Title: Re: Today's wallet seems to be very not smooth
Post by: abit on February 17, 2016, 09:08:00 am
What are the steps to setting up a wallet?
You mean full node? This: http://docs.bitshares.eu/bitshares/tutorials/full-node-usage.html
Title: Re: Today's wallet seems to be very not smooth
Post by: iHashFury on February 17, 2016, 05:11:44 pm
What are the steps to setting up a wallet?

Instructions for advanced user https://bitsharestalk.org/index.php/topic,21480.msg279541.html#msg279541

Promotion for advanced users https://bitcointalk.org/index.php?topic=1366292.msg13901158#msg13901158