Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - cgafeng

Pages: 1 2 3 [4] 5 6 7 8 9 10 11 ... 35
46
我不觉得bts价格的大跌是因为强制平仓导致的,而是因为BTA的需求不足导致的,说明目前内盘bitusd供应量已经超过需求。

首先考虑平仓时需要做什么?
要用bts购买bitusd,仓位越高bts价格降得越厉害,平仓花费的bts就越多,不管平仓者事先有没有bts,最终的结果都是自己资产缩水。
所以一个理性的投资者会总是在平仓期限到的时候才平仓吗?

48
中文 (Chinese) / Re: 新一轮雪崩预警
« on: March 25, 2015, 02:32:53 am »
我对地球人的崇拜如滔滔江水

49
中文 (Chinese) / Re: 有大佬在恶意做空bts么
« on: March 24, 2015, 11:19:54 am »
我不知道说101  0成本的是什么逻辑?
你去工作换来RMB买的bts是有成本的,
101工作不换RMB直接换bts,这些bts就是0成本?
工作?哪份工作不需要去公司上班的?码农们在家里写代码有老板要你?一个不要求员工到公司上班的企业能不倒闭?

50
中文 (Chinese) / Re: 有大佬在恶意做空bts么
« on: March 24, 2015, 11:11:20 am »
我不知道说101  0成本的是什么逻辑?
你去工作换来RMB买的bts是有成本的,
101工作不换RMB直接换bts,这些bts就是0成本?

51
这个网站的定位是圈外人根本不需要知道bts的存在,直接在dacx网站上买卖的。
高端玩家可以自己取回bts内盘买卖。

52
众筹成功的项目会在bts内盘创建对应的UIA(用户定义资产)。
开始时DACX平台保存所有股东的UIA,当有股东提出自己的UIA到自己bts账号上时,这些UIA就可以在bts内盘交易,股东可以在内盘创建任意交易对,当然也就可以在内盘用bitcny、bitusd等购买到这些股票。

54
General Discussion / Re: Light Wallet Beta Release
« on: February 27, 2015, 01:09:26 am »
Thanks again, @cgafeng! :) Have you tried just deleting qmlsettingsplugind.dll? It's a debug library (that's what the 'd' at the end of the name means) so if the light wallet isn't using the debug libs, you should be fine without it. That should make Comodo shut up. Haha

OK, i will delete the debug library next time.

@cgafeng can you make an installer version for non-technical people? I really appreciate for your effort :)
I think there are office team working on it. I can do this before that and may take some time.

55
General Discussion / Re: Light Wallet Beta Release
« on: February 26, 2015, 11:51:29 am »
1.0 beta 2 windows binary:
https://dl.dropboxusercontent.com/u/15663627/bts_light_wallet_win1.0beta2.zip


And thinks for the bounty

56
中文 (Chinese) / Re: bts网页钱包 值得体验
« on: February 26, 2015, 02:52:46 am »
在mac版本的轻钱包里生成的账号,

在web上怎么不能用?

账号就像公钥一样,是给别人看的,真正要用时需要的是私钥,这个私钥不管是轻钱包还是网页钱包都是保持在本地机器上的,目前轻钱包和网页钱包都还处于测试阶段,应该还没有提供导入私钥的功能。二者脑钱包使用的算法也可能不一样。

57
General Discussion / Re: Light Wallet Beta Release
« on: February 25, 2015, 04:56:33 pm »
@cgafeng: OK, the last sync block was uninitialized. Good catch. I've fixed that. :)

As to the inability to connect to the server... That's weird, particularly since it works some times and not others. Could it be the GFW tampering with the connections? Can you get the CLI output when it fails to connect? I'll look into the blobs appearing in the error messages; that definitely should not happen.

I don't know what you mean about the CLI output, when debug code there are exception on rpc_client_impl::connect_to:
https://github.com/BitShares/bitshares/blob/a076a652444ff8d0b6d871635f870a1fcbe05d06/libraries/rpc/rpc_client.cpp#L49
Code: [Select]
    void rpc_client_impl::connect_to(const fc::ip::endpoint& remote_endpoint,
                                     const bts::blockchain::public_key_type& remote_public_key)
    {
       fc::buffered_istream_ptr buffered_istream;
       fc::buffered_ostream_ptr buffered_ostream;

       if( remote_public_key != bts::blockchain::public_key_type() )
       {
          net::stcp_socket_ptr socket = std::make_shared<bts::net::stcp_socket>();

          try
          {
             socket->connect_to(remote_endpoint);
          }
          catch ( const fc::exception& e )
          {
             elog( "fatal: error opening RPC socket to endpoint ${endpoint}: ${e}", ("endpoint", remote_endpoint)("e", e.to_detail_string() ) );
             throw;
          }
          ......
}

the exception info is:
Code: [Select]
0 exception: unspecified
由于目标计算机积极拒绝,无法连接。
    {"message":"由于目标计算机积极拒绝,无法连接。"}
    asio  asio.cpp:59 fc::asio::detail::error_handler

I use the vpn and get the same result, so i think it's not cause by the GFW.

58
General Discussion / Re: Light Wallet Beta Release
« on: February 25, 2015, 11:41:41 am »
There are some pic, the font size is small on the pc.





59
General Discussion / Re: Light Wallet Beta Release
« on: February 25, 2015, 11:36:00 am »
After debug the code, i may found what cause the trx history show issue.

https://github.com/BitShares/bitshares/blob/a076a652444ff8d0b6d871635f870a1fcbe05d06/libraries/light_wallet/light_wallet.cpp#L503
Code: [Select]
bool light_wallet::sync_transactions(bool resync_all)
{
   FC_ASSERT( is_open() );

   uint32_t sync_block = _data->last_transaction_sync_block;
   if( resync_all )
      sync_block = 0;
   vector<string> account_names;
   ......
}

the sync_block is a very large number in _data, after i set to resync_all, the trx is show.
last_transaction_sync_block init problem?

And the server looks down after i try to import account on another computer.

60
General Discussion / Re: Light Wallet Beta Release
« on: February 24, 2015, 11:50:26 pm »
bts_light_wallet_win1.0beta\bts_light_wallet_win\Qt\labs\settings\qmlsettingsplugind.dll

This file i get from the office Qt5.4.0\5.4\msvc2013_opengl\qml\Qt\labs\settings\, everybody can download from office web and check it.

I will check the trx history issue later, got to work now.

Pages: 1 2 3 [4] 5 6 7 8 9 10 11 ... 35