In the client, debug console -> masternodelist
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
firedog@vultr:~/sentinel$ ./venv/bin/py.test ./test
========================== test session starts ===========================
platform linux2 -- Python 2.7.6, pytest-3.0.1, py-1.4.31, pluggy-0.3.1
rootdir: /home/firedog/sentinel, inifile:
collected 20 items
test/integration/test_jsonrpc.py F
test/unit/test_models.py ..
test/unit/test_monacoCoin_config.py .
test/unit/test_monacoCoind_data_shims.py ..
test/unit/test_monacoCoiny_things.py .....
test/unit/test_submit_command.py .
test/unit/models/test_proposals.py ...
test/unit/models/test_superblocks.py .....
================================ FAILURES ================================
[color=red]____________________________ test_monacoCoind ____________________________[/color]
def test_monacoCoind():
config_text = monacoCoinConfig.slurp_config_file(config.monacoCoin_conf)
network = 'mainnet'
is_testnet = False
genesis_hash = u'0000005be1eb05b05fb45ae38ee9c1441514a65343cd146100a574de4278f1a3'
for line in config_text.split("\n"):
if line.startswith('testnet=1'):
network = 'testnet'
is_testnet = True
genesis_hash = u'000008f18ad6913eed878632efbb83909272d493e5c065789330eb23ab65b5cf'
creds = monacoCoinConfig.get_rpc_creds(config_text, network)
monacoCoind = monacoCoinDaemon(**creds)
assert monacoCoind.rpc_command is not None
assert hasattr(monacoCoind, 'rpc_connection')
# monacoCoin testnet block 0 hash == 00000bafbc94add76cb75e2ec92894837288a481e5c005f6563d91623bf8bc2c
# test commands without arguments
> info = monacoCoind.rpc_command('getinfo')
[color=red]test/integration/test_jsonrpc.py[/color]:34:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
[color=red]lib/monacoCoind.py[/color]:42: in rpc_command
return self.rpc_connection.__getattr__(params[0])(*params[1:])
[color=red]venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py[/color]:139: in __call__
response = self._get_response()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self =
def _get_response(self):
http_response = self.__conn.getresponse()
if http_response is None:
raise JSONRPCException({
'code': -342, 'message': 'missing HTTP response from server'})
content_type = http_response.getheader('Content-Type')
if content_type != 'application/json':
raise JSONRPCException({
> 'code': -342, 'message': 'non-JSON HTTP response with \'%i %s\' from server' % (http_response.status, http_response.reason)})
[color=red]E JSONRPCException: -342: non-JSON HTTP response with '401 Unauthorized' from server
venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py[/color]:187: JSONRPCException
[color=red]================== 1 failed, 19 passed in 1.02 seconds ===================[/color]