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 - crazybit

Pages: 1 ... 22 23 24 25 26 27 28 [29]
421
how BitUSD beg to USD?imagine BitUSD is the USD currency futures.


Sent from my iPhone using Tapatalk

422
Quote
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
LIB_EAY_LIBRARY
    linked by target "Keyhotee" in directory F:/WorkSpace/keyhotee
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
    ....
LIB_EAY_RELEASE
    linked by target "Keyhotee" in directory F:/WorkSpace/keyhotee
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
SSL_EAY_LIBRARY
    linked by target "Keyhotee" in directory F:/WorkSpace/keyhotee
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
SSL_EAY_RELEASE
    linked by target "Keyhotee" in directory F:/WorkSpace/keyhotee
 

issue should not caused by OpenSSL ,as the OpenSSL had been installed and the env variable OPENSSL_ROOT_DIR also had been setup properly, seems the highlighted variable can be found while linking

423
Technical Support / Re: How to specify the sending address
« on: January 15, 2014, 11:42:40 am »
Hi all, I have multiple addresses in my wallet, with different amount of pts in every address. Now I want to get AGS by donating PTS, but I only want to touch the pts in one address, how I can specify the sending address? cause I don't want the other addresses exposed... 8)

Yes, it is possible, but a bit complex,you could use the command line to sent out the PTS from the specified address, step as follows:

1) Go to the command line through Help->Debug window->Console

2) if you wallet was locked, issue the following command to unlock your wallet, otherwise skip this step.

walletpassphrase <yourpassword> <timeout value>

3)set the transaction fee by issuing the following command:

settxfee 0.001

4) Make sure your address has sufficient fund, and then sent out the PTS from the specified address by issuing the following command:


sendfrom <your address label > <destination address> <sent out amount>






424
install boost for related vs, set BOOST_ROOT to boost install dir.

run run_cmake.bat to config and generate vs project files.

Sent from my GT-N7100 using Tapatalk

As question raised in the thread https://bitsharestalk.org/index.php?topic=1331.0
The linking related issue was encountered while generating the vs solution ,do you have any idea?


Sent from my iPhone using Tapatalk

425
Technical Support / Re: how to setup the development workspace
« on: January 12, 2014, 01:10:35 pm »

Finally, succuss build the solution, and generate the exe.

To fix the above link errors, in CMakeLists.txt of Keyhotee, the coroutine module is missed:

add "coroutine" to the last of find_boost package, in "IF( WIN32 )" switch. There is coroutine for non-windows, so I guess the
coder fogot it in WIN32.

FIND_PACKAGE(Boost 1.53 REQUIRED COMPONENTS thread date_time
system filesystem program_options signals serialization chrono
unit_test_framework context coroutine)
请问下你怎么编译leveldb-win的,用vs2012吗。
如果用vs2012的话,找不到CMakeLists.txt,没法用cmake创建工程。
如果可以的话麻烦你把解决步骤写详细点,谢谢

for win32 platform, you should clone leveldb(https://github.com/InvictusInnovations/leveldb-win) into keyhotee/BitShares/vendor/


Sent from my iPhone using Tapatalk

yes, but there is not CMakeLists.txt

use the "windows" branch but no "master" branch

426
Technical Support / Re: how to setup the development workspace
« on: January 12, 2014, 11:30:12 am »

Finally, succuss build the solution, and generate the exe.

To fix the above link errors, in CMakeLists.txt of Keyhotee, the coroutine module is missed:

add "coroutine" to the last of find_boost package, in "IF( WIN32 )" switch. There is coroutine for non-windows, so I guess the
coder fogot it in WIN32.

FIND_PACKAGE(Boost 1.53 REQUIRED COMPONENTS thread date_time
system filesystem program_options signals serialization chrono
unit_test_framework context coroutine)
请问下你怎么编译leveldb-win的,用vs2012吗。
如果用vs2012的话,找不到CMakeLists.txt,没法用cmake创建工程。
如果可以的话麻烦你把解决步骤写详细点,谢谢

for win32 platform, you should clone leveldb(https://github.com/InvictusInnovations/leveldb-win) into keyhotee/BitShares/vendor/


Sent from my iPhone using Tapatalk

427
Technical Support / Re: how to setup the development workspace
« on: January 09, 2014, 02:01:59 pm »
problem solved.

Can VS2010 compile the keyhotee and bitshares workspace and build executable keyhotee application?  is VS2012 required?

Finally, succuss build the soluction, and generate the exe.

For the above link errors, fix it in CMakeLists.txt of Keyhotee:

add "coroutine" to the last of find_boost package, in "IF( WIN32 )" switch. There is coroutine for non-windows, so I guess may the
coder fogot it in WIN32.

Code: [Select]
FIND_PACKAGE(Boost 1.53 REQUIRED COMPONENTS thread date_time system filesystem program_options signals serialization chrono unit_test_framework context [color=red]coroutine[/color])
I suspect it is a boost version issue that our Windows developer was using an older version that didn't include coroutine (1.53 vs 1.54+)...

Yes, I think so. I build sucessfully with VS2012, keyhotee use some feature of C++11, which vs2010 seems not support.

Sent from my GT-N7100 using Tapatalk


the following error was encoutered while generating the vs2012 workspace, do you have any idea?

statusCompiling on WIN32
Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing:  OPENSSL_LIBRARIES OPENSSL_INCLUDE_DIR) (found version "1.0.1e")
** for a debug build: cmake -DCMAKE_BUILD_TYPE=Debug ..
BOOST_LIBRARIES=C:/Boost/lib/libboost_thread-vc110-mt-1_55.libC:/Boost/lib/libboost_system-vc110-mt-1_55.libC:/Boost/lib/libboost_filesystem-vc110-mt-1_55.libC:/Boost/lib/libboost_date_time-vc110-mt-1_55.libC:/Boost/lib/libboost_chrono-vc110-mt-1_55.libSSL_EAY_LIBRARY-NOTFOUNDLIB_EAY_LIBRARY-NOTFOUNDSSL_EAY_RELEASE-NOTFOUNDLIB_EAY_RELEASE-NOTFOUNDC:/Boost/lib/libboost_coroutine-vc110-mt-1_55.libC:/Boost/lib/libboost_context-vc110-mt-1_55.lib
Setting up debug options for MSVC build
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
LIB_EAY_LIBRARY
    linked by target "Keyhotee" in directory F:/WorkSpace/keyhotee
    linked by target "keyhotee_library" in directory F:/WorkSpace/keyhotee
    linked by target "sancho" in directory F:/WorkSpace/keyhotee/BitShares/sancho
    linked by target "sanchoc" in directory F:/WorkSpace/keyhotee/BitShares/sancho
    linked by target "bitshares_client" in directory F:/WorkSpace/keyhotee/BitShares/server
    linked by target "bitshares_server" in directory F:/WorkSpace/keyhotee/BitShares/server
    linked by target "bitshares_test" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "blockchain_tests" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "momentum_pow_test" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "timekeeper" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "name_reg_server" in directory F:/WorkSpace/keyhotee/BitShares/founder_reg_server
    linked by target "mail_server" in directory F:/WorkSpace/keyhotee/BitShares/mail_server
    linked by target "pool_miner" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_masiner" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
LIB_EAY_RELEASE
    linked by target "Keyhotee" in directory F:/WorkSpace/keyhotee
    linked by target "keyhotee_library" in directory F:/WorkSpace/keyhotee
    linked by target "sancho" in directory F:/WorkSpace/keyhotee/BitShares/sancho
    linked by target "sanchoc" in directory F:/WorkSpace/keyhotee/BitShares/sancho
    linked by target "bitshares_client" in directory F:/WorkSpace/keyhotee/BitShares/server
    linked by target "bitshares_server" in directory F:/WorkSpace/keyhotee/BitShares/server
    linked by target "bitshares_test" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "blockchain_tests" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "momentum_pow_test" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "timekeeper" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "name_reg_server" in directory F:/WorkSpace/keyhotee/BitShares/founder_reg_server
    linked by target "mail_server" in directory F:/WorkSpace/keyhotee/BitShares/mail_server
    linked by target "pool_miner" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_miner" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
SSL_EAY_LIBRARY
    linked by target "Keyhotee" in directory F:/WorkSpace/keyhotee
    linked by target "keyhotee_library" in directory F:/WorkSpace/keyhotee
    linked by target "sancho" in directory F:/WorkSpace/keyhotee/BitShares/sancho
    linked by target "sanchoc" in directory F:/WorkSpace/keyhotee/BitShares/sancho
    linked by target "bitshares_client" in directory F:/WorkSpace/keyhotee/BitShares/server
    linked by target "bitshares_server" in directory F:/WorkSpace/keyhotee/BitShares/server
    linked by target "bitshares_test" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "blockchain_tests" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "momentum_pow_test" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "timekeeper" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "name_reg_server" in directory F:/WorkSpace/keyhotee/BitShares/founder_reg_server
    linked by target "mail_server" in directory F:/WorkSpace/keyhotee/BitShares/mail_server
    linked by target "pool_miner" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_miner" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
SSL_EAY_RELEASE
    linked by target "Keyhotee" in directory F:/WorkSpace/keyhotee
    linked by target "keyhotee_library" in directory F:/WorkSpace/keyhotee
    linked by target "sancho" in directory F:/WorkSpace/keyhotee/BitShares/sancho
    linked by target "sanchoc" in directory F:/WorkSpace/keyhotee/BitShares/sancho
    linked by target "bitshares_client" in directory F:/WorkSpace/keyhotee/BitShares/server
    linked by target "bitshares_server" in directory F:/WorkSpace/keyhotee/BitShares/server
    linked by target "bitshares_test" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "blockchain_tests" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "momentum_pow_test" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "timekeeper" in directory F:/WorkSpace/keyhotee/BitShares/tests
    linked by target "name_reg_server" in directory F:/WorkSpace/keyhotee/BitShares/founder_reg_server
    linked by target "mail_server" in directory F:/WorkSpace/keyhotee/BitShares/mail_server
    linked by target "pool_miner" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_miner" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner
    linked by target "pool_server" in directory F:/WorkSpace/keyhotee/miner

428
中文 (Chinese) / Re: [意见收集]Keyhotee用户反馈
« on: January 08, 2014, 05:23:19 pm »

请问我不在线,能够收到邮件吗?

可以,我今天上线时就收到了别人发的邮件(当然也可能是赶巧)。

我想测试一下, 我现在关闭了Keyhotee离线,能否某人帮忙发个邮件给我,然后我再打开看一下有没有发送到

5s9Mcwctm5wRELMhfpKsAe8Q9SNUBb8TAbabFvVgr7NCvbstxB

已发送,看离线能收到没

谢谢,我离线时,确实可以收到对方的邮件。

但是我有一个疑问,邮件发送后,内容一直是在网络上广播吗? 有没有timeout时间,还是说会存储到发送者本地,当收件人和发件人同时在线时,便可收到?

没看代码,瞎猜一下。知道的版友请指教 :D
1、因为目前通信是走的3i的中心服务器,估计邮件直接存在服务器上,对方上线时,发过去;
2、或者邮件先存在本地,定时往服务器push,如果对方不在,服务器不进行转发;直到服务器看到对方在了,就把邮件转发过去;对方一周不上线,邮件标记为发送失败。

谁愿意和我合作完成这个测试,我想试一试当发件人和收件人同时离线时,收件人先上线能否收到邮件。PM通知我测试开始,完成以下步骤。
太懒了,有空再看代码:)

步骤
1.  我先退出Keyhotee,PM通知你我离线了
2. 你发送一个邮件给我,告诉我你是谁,稍等片刻后,你也退出Keyhotee

5s9Mcwctm5wRELMhfpKsAe8Q9SNUBb8TAbabFvVgr7NCvbstxB

3. 你用论坛PM我,我登陆Keyhotee查看能否收到邮件
4. 我将测试结果发送给你,结束

我看过源码,似乎是两人都在线时是用点对点传输、不在线时则向全网广播。


Sent from my iPhone using Tapatalk

429
Technical Support / Re: how to setup the development workspace
« on: January 08, 2014, 12:41:37 pm »
Can VS2010 compile the keyhotee and bitshares workspace and build executable keyhotee application?  is VS2012 required?

Finally, succuss build the soluction, and generate the exe.

For the above link errors, fix it in CMakeLists.txt of Keyhotee:

add "coroutine" to the last of find_boost package, in "IF( WIN32 )" switch. There is coroutine for non-windows, so I guess may the
coder fogot it in WIN32.

Code: [Select]
FIND_PACKAGE(Boost 1.53 REQUIRED COMPONENTS thread date_time system filesystem program_options signals serialization chrono unit_test_framework context [color=red]coroutine[/color])
I suspect it is a boost version issue that our Windows developer was using an older version that didn't include coroutine (1.53 vs 1.54+)...

430
Keyhotee / Re: Keyhotee Founder ID Registration Process
« on: January 04, 2014, 01:27:30 pm »
any update? can be released by today?

431
BitShares PTS / Re: ★Giveaway I★ Claim your free PTS - rule inside
« on: December 30, 2013, 11:18:57 am »
PYBPExrLxB6Wy3XcxpZTja26QrysuGgCfX

thanks

Pages: 1 ... 22 23 24 25 26 27 28 [29]