Bitcoin Forum
July 02, 2024, 08:41:07 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][POW & POSe X11][MASTERNODE] MonacoCoin - A real use in Monaco on: January 03, 2018, 04:40:47 AM
Trying to work thru the problem I'm having.  Here's the latest update.  I have ./monoecid running in one instance.
In another window, I can run ./monoeci-cli getinfo and everything looks good.  I can also run ./monoeci-cli mnsync status and recieve:

Code:
{
  "AssetID": 999,
  "AssetName": "MASTERNODE_SYNC_FINISHED",
  "Attempt": 0,
  "IsBlockchainSynced": true,
  "IsMasternodeListSynced": true,
  "IsWinnersListSynced": true,
  "IsSynced": true,
  "IsFailed": false
}

But when I do the Sentinel setup, that's where my problems are.  I created in my main directory (/home/USER/monoeci.conf) the config file.  I added this directory in Sentinel's conf file.  When I run the Sentinel test, I get this:
Code:
============================= test session starts ==============================
platform linux2 -- Python 2.7.6, pytest-3.0.1, py-1.4.31, pluggy-0.3.1
rootdir: /home/xmccbob/sentinel, inifile:
collected 20 items

test/integration/test_jsonrpc.py F
test/unit/test_models.py ..
test/unit/test_monoeci_config.py .
test/unit/test_monoecid_data_shims.py ..
test/unit/test_monoeciy_things.py .....
test/unit/test_submit_command.py .
test/unit/models/test_proposals.py ...
test/unit/models/test_superblocks.py .....

=================================== FAILURES ===================================
________________________________ test_monoecid _________________________________

    def test_monoecid():
        config_text = monoeciConfig.slurp_config_file(config.monoeci_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 = monoeciConfig.get_rpc_creds(config_text, network)
        monoecid = monoeciDaemon(**creds)
        assert monoecid.rpc_command is not None

        assert hasattr(monoecid, 'rpc_connection')

        # monoeci testnet block 0 hash == 00000bafbc94add76cb75e2ec92894837288a481e5c005f6563d91623bf8bc2c
        # test commands without arguments
>       info = monoecid.rpc_command('getinfo')

test/integration/test_jsonrpc.py:34:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
lib/monoecid.py:42: in rpc_command
    return self.rpc_connection.__getattr__(params[0])(*params[1:])
venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py:139: in __call__
    response = self._get_response()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <bitcoinrpc.authproxy.AuthServiceProxy object at 0x7f84dd8e2a10>

    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)})
E           JSONRPCException: -342: non-JSON HTTP response with '401 Unauthorized' from server

venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py:187: JSONRPCException
===================== 1 failed, 19 passed in 0.58 seconds ======================

It says the problem is authentication.  I'm not sure what I'm doing wrong.  There are no spaces in my conf file :
Code:
rpcuser=username
rpcpassword=password
rpcallowip=127.0.0.1
server=1
listen=1
daemon=1
maxconnections=24
masternode=1
masternodeprivkey=privatekeygeneratedfromwindowswallet
externalip=ip.here

This is on a fresh Ubuntu 14 VPS.  Sorry for the noob questions, this is my first masternode and all the tutorials reference the old monacoCoinCore stuff that apparently no longer exists.....

I presume that I shouldn't send my 1,000 tokens over until the Sentinel test passes 100%, right?
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][POW & POSe X11][MASTERNODE] MonacoCoin - A real use in Monaco on: January 03, 2018, 02:09:35 AM
Hello,

I'm trying to set up a new Masternode.  Because it's brand new, I don't have the old files (no MonacoCoinCore, etc).

I downloaded the monoeciCore-0.12.2-linux64-cli.Ubuntu14.04.tar.gz package, unpacked it then ran

this command:  ./monoecid

The terminal just hangs.  From my understanding, it's supposed to be creating the core files and wallet on my VPS?  How long should this take?  I'm kind of stuck at this point, because I can't run anything with the Core files on the VPS.

To further elaborate, where do I save my VPS conf file?  When I run nano .monacoCoinCore/monacoCoin.conf and try to save my settings I get an error that the file/folder don't exist.

When I do an 'ls' I see monoeci-cli, monoecid, monoeci-tx and the tar.gz file.  Do I create the config inside this same directoy?
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][POW & POSe X11][MASTERNODE] MonacoCoin - A real use in Monaco on: January 03, 2018, 01:32:58 AM
Hello,

I'm trying to set up a new Masternode.  Because it's brand new, I don't have the old files (no MonacoCoinCore, etc).

I downloaded the monoeciCore-0.12.2-linux64-cli.Ubuntu14.04.tar.gz package, unpacked it then ran

this command:  ./monoecid

The terminal just hangs.  From my understanding, it's supposed to be creating the core files and wallet on my VPS?  How long should this take?  I'm kind of stuck at this point, because I can't run anything with the Core files on the VPS.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Loan or Lease | Masternode P2P Decentralized Lending Platform | LOL on: December 04, 2017, 09:24:14 PM
Just wanted to post up.  Bought a masternode today, and joined the project as an investor.  I really like the looks of this project, and love the idea of a private blockchain run via masternodes.

Figured I should say hi, follow along on your progress here, and contribute any way I can!
5  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN]KarmaToken-The currency of Good Karma Society, good things for good people. on: May 01, 2017, 02:40:40 PM
This is great news!  Love the game, can't wait to hear more about what's in the works.....
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Welcome to Crypto Traders Guild Token of Membership (CTGTOKENS) on: December 08, 2016, 04:17:25 PM
I received mine, thank you!
7  Alternate cryptocurrencies / Tokens (Altcoins) / Re: KarmaToken - Karma Society's Currency Now Based On Counterparty Platform on: November 07, 2016, 06:01:26 PM
I have already received all my coins I swapped last week.  I just send some more.  Thank you!
8  Alternate cryptocurrencies / Tokens (Altcoins) / Re: KarmaToken - Karma Society's Currency Now Based On Counterparty Platform on: November 04, 2016, 07:16:49 PM
I submitted some Karmacoins just now.  Looking forward to what's to come with KarmaToken!
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Welcome to Crypto Traders Guild Token of Membership (CTGTOKEN) on: September 01, 2016, 04:16:35 PM
Thanks for all you do!!!

I've been having issues opening my wallet since I created it.  Do you need to use a certain browser for better results?



EDIT:  Can't log in via Firefox, was able to via Chrome
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Welcome to Crypto Traders Guild Token of Membership (CTGTOKEN) on: July 20, 2016, 01:59:31 PM
New Steemit account registration is on hold.  I won't be able to set up an account until they allow new members.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!