I am facing some problems with codes cloned from
https://github.com/pmconrad/PTS:
1) Compilation problem for dev tests.
[ 99%] Building CXX object tests/CMakeFiles/dev_tests.dir/dev_tests.cpp.o
In file included from /root/ab/PTS/libraries/wallet/include/bts/wallet/transaction_builder.hpp:5:0,
from /root/ab/PTS/libraries/wallet/include/bts/wallet/wallet.hpp:6,
from /root/ab/PTS/tests/dev_fixture.hpp:3,
from /root/ab/PTS/tests/dev_tests.cpp:3:
/root/ab/PTS/libraries/wallet/include/bts/wallet/wallet_records.hpp: In member function âbool bts::wallet::transaction_ledger_entry::is_confirmed() constâ:
/root/ab/PTS/libraries/wallet/include/bts/wallet/wallet_records.hpp:203:56: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
bool is_confirmed()const { return block_num != -1; }
2)
"blockchain_head_block_num": 0,
"blockchain_head_block_age": null,
"blockchain_head_block_timestamp": null,
"network_num_connections": 0,
No connection for running bitshare_client without parameters or running the client with p2p port - eg 3700, 3701 and 3702.
It seems some problem with the new seeding codes.
Console did however mention a few peers found
"Adding peer 81.7.11.13:3701 to peer database
Adding peer 5.104.106.18:3701 to peer database"
3) I still have problem if I changed the prefix PTS to PTST. We may need a different prefix for a Dev Chain later.
In file included from /root/ab/PTS/tests/dev_tests.cpp:3:0:
/root/ab/PTS/tests/dev_fixture.hpp: In constructor âchain_fixture::chain_fixture()â:
/root/ab/PTS/tests/dev_fixture.hpp:166:61: error: âBTS_BLOCKCHAIN_INITIAL_SHARESâ was not declared in this scope
(double)BTS_BLOCKCHAIN_INITIAL_SHARES/BTS_BLOCKCHAIN_NUM_DELEGATES) );
^
make[2]: *** [tests/CMakeFiles/dev_tests.dir/dev_tests.cpp.o] Error 1
make[1]: *** [tests/CMakeFiles/dev_tests.dir/all] Error 2