Bitcoin Forum
June 29, 2024, 01:10:07 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 »  All
  Print  
Author Topic: 🚀 [ANN] OFFICIAL OMEGA | X11 POW/POS | MASTERNODE by the Community 🚀  (Read 27783 times)
TrMark
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
February 20, 2018, 05:49:40 PM
 #61

Might want to have that step added into the guides tbh

check HOW.to
looked at main page [ANN]

Haha just spotted it thanks
detonyle
Member
**
Offline Offline

Activity: 140
Merit: 10


View Profile
February 20, 2018, 05:51:41 PM
 #62

I started Mn and I get "status": "WATCHDOG_EXPIRED"

what's wrong? never get any problem with MN

install setinell

on windows?

come on https://discord.gg/YUD4Tp4
active support here  Wink


yeah waiting the timer Cheesy
so I can't run MN on standalone windows? I don't have choice to install on linux?

bitnod (OP)
Full Member
***
Offline Offline

Activity: 434
Merit: 101


View Profile WWW
February 20, 2018, 06:00:23 PM
 #63

effectively on Windaub just wait a 15-30 minutes

both are working properly
pending some corrective I advise you linux, for better performance
thecoder2012
Member
**
Offline Offline

Activity: 156
Merit: 10


View Profile
February 20, 2018, 06:05:44 PM
 #64

so I can't run MN on standalone windows? I don't have choice to install on linux?
You can use windows with sentinel. See https://github.com/omegacoinnetwork/sentinel
TrMark
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
February 20, 2018, 07:08:56 PM
 #65

I have an issue with installing sentinel. When i test it i get 1 failure.

Code:
===================================================== FAILURES =====================================================
________________________________________________ test_get_rpc_creds ________________________________________________

    def test_get_rpc_creds():
        omegacoin_config = omegacoin_conf()
        creds = OmegaConfig.get_rpc_creds(omegacoin_config, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk'
        assert creds.get('port') == 29241

        omegacoin_config = omegacoin_conf(rpcpassword='s00pers33kr1t', rpcport=8000)
        creds = OmegaConfig.get_rpc_creds(omegacoin_config, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 's00pers33kr1t'
        assert creds.get('port') == 8000

        no_port_specified = re.sub('\nrpcport=.*?\n', '\n', omegacoin_conf(), re.M)
        creds = OmegaConfig.get_rpc_creds(no_port_specified, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk'
>       assert creds.get('port') == 19998
E       assert 17778 == 19998
E        +  where 17778 = <built-in method get of dict object at 0x7fac94c89168>('port')
E        +    where <built-in method get of dict object at 0x7fac94c89168> = {'password': 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk', 'port': 17778, 'user': 'omegacoinrpc'}.get

test/unit/test_dash_config.py:62: AssertionError
======================================= 1 failed, 22 passed in 0.41 seconds ========================================

Any ideas?
bitnod (OP)
Full Member
***
Offline Offline

Activity: 434
Merit: 101


View Profile WWW
February 20, 2018, 07:13:49 PM
 #66

I have an issue with installing sentinel. When i test it i get 1 failure.

Code:
===================================================== FAILURES =====================================================
________________________________________________ test_get_rpc_creds ________________________________________________

    def test_get_rpc_creds():
        omegacoin_config = omegacoin_conf()
        creds = OmegaConfig.get_rpc_creds(omegacoin_config, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk'
        assert creds.get('port') == 29241

        omegacoin_config = omegacoin_conf(rpcpassword='s00pers33kr1t', rpcport=8000)
        creds = OmegaConfig.get_rpc_creds(omegacoin_config, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 's00pers33kr1t'
        assert creds.get('port') == 8000

        no_port_specified = re.sub('\nrpcport=.*?\n', '\n', omegacoin_conf(), re.M)
        creds = OmegaConfig.get_rpc_creds(no_port_specified, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk'
>       assert creds.get('port') == 19998
E       assert 17778 == 19998
E        +  where 17778 = <built-in method get of dict object at 0x7fac94c89168>('port')
E        +    where <built-in method get of dict object at 0x7fac94c89168> = {'password': 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk', 'port': 17778, 'user': 'omegacoinrpc'}.get

test/unit/test_dash_config.py:62: AssertionError
======================================= 1 failed, 22 passed in 0.41 seconds ========================================

Any ideas?

have you edit sentinel.conf
example:

Code:
omegacoin_conf=root/.omegacoincore/omegacoin.conf

et port open

check sudo ufw status
TrMark
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
February 20, 2018, 07:18:40 PM
 #67

I have an issue with installing sentinel. When i test it i get 1 failure.

Code:
===================================================== FAILURES =====================================================
________________________________________________ test_get_rpc_creds ________________________________________________

    def test_get_rpc_creds():
        omegacoin_config = omegacoin_conf()
        creds = OmegaConfig.get_rpc_creds(omegacoin_config, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk'
        assert creds.get('port') == 29241

        omegacoin_config = omegacoin_conf(rpcpassword='s00pers33kr1t', rpcport=8000)
        creds = OmegaConfig.get_rpc_creds(omegacoin_config, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 's00pers33kr1t'
        assert creds.get('port') == 8000

        no_port_specified = re.sub('\nrpcport=.*?\n', '\n', omegacoin_conf(), re.M)
        creds = OmegaConfig.get_rpc_creds(no_port_specified, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk'
>       assert creds.get('port') == 19998
E       assert 17778 == 19998
E        +  where 17778 = <built-in method get of dict object at 0x7fac94c89168>('port')
E        +    where <built-in method get of dict object at 0x7fac94c89168> = {'password': 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk', 'port': 17778, 'user': 'omegacoinrpc'}.get

test/unit/test_dash_config.py:62: AssertionError
======================================= 1 failed, 22 passed in 0.41 seconds ========================================

Any ideas?

have you edit sentinel.conf
example:

Code:
omegacoin_conf=root/.omegacoincore/omegacoin.conf

et port open

check sudo ufw status

I added
Code:
omegacoin_conf=/home/MYUSERNAMEHERE/.omegacoincore/omegacoin.conf
into sentinel.conf obviously with my username in there, which port should i be checking? none of the ones mentioned in the errors have been mentioned anywhere else


EDIT: although the sentinel test failed 1 passed 22 in the OMEGA wallet my MN status changed form WATCHDOG_EXPIRED to ENABLED, sooo i guess its working?
CryptTech
Copper Member
Jr. Member
*
Offline Offline

Activity: 328
Merit: 1


View Profile WWW
February 20, 2018, 07:25:45 PM
 #68

Hello.

I have a few questions.

1) when will be the actual roadmap and WP?
2) when will the project's social media pages?
3) when will the project team or its members be shown?



Hello active work by dev & other dev in parallel by the community
to increase growth, awareness & financial health of OMEGA

Each of your questions is important & will be treated in time..

for information we received yesterday the validation of MNO ( at last!. )
"72h delay - We will get listed soon."

stay tuned  Wink

Thanks, I will wait for further answers


AllCrypt.Tech - News Cryptocurrency | ✅ BattleHashes.Com - Multiplayer gambling on blockchain | Discussion Thread BH: https://bitcointalk.org/index.php?topic=5188527.0
bitnod (OP)
Full Member
***
Offline Offline

Activity: 434
Merit: 101


View Profile WWW
February 20, 2018, 07:26:56 PM
 #69

I have an issue with installing sentinel. When i test it i get 1 failure.

Code:
===================================================== FAILURES =====================================================
________________________________________________ test_get_rpc_creds ________________________________________________

    def test_get_rpc_creds():
        omegacoin_config = omegacoin_conf()
        creds = OmegaConfig.get_rpc_creds(omegacoin_config, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk'
        assert creds.get('port') == 29241

        omegacoin_config = omegacoin_conf(rpcpassword='s00pers33kr1t', rpcport=8000)
        creds = OmegaConfig.get_rpc_creds(omegacoin_config, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 's00pers33kr1t'
        assert creds.get('port') == 8000

        no_port_specified = re.sub('\nrpcport=.*?\n', '\n', omegacoin_conf(), re.M)
        creds = OmegaConfig.get_rpc_creds(no_port_specified, 'testnet')

        for key in ('user', 'password', 'port'):
            assert key in creds
        assert creds.get('user') == 'omegacoinrpc'
        assert creds.get('password') == 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk'
>       assert creds.get('port') == 19998
E       assert 17778 == 19998
E        +  where 17778 = <built-in method get of dict object at 0x7fac94c89168>('port')
E        +    where <built-in method get of dict object at 0x7fac94c89168> = {'password': 'EwJeV3fZTyTVozdECF627BkBMnNDwQaVLakG3A4wXYyk', 'port': 17778, 'user': 'omegacoinrpc'}.get

test/unit/test_dash_config.py:62: AssertionError
======================================= 1 failed, 22 passed in 0.41 seconds ========================================

Any ideas?

have you edit sentinel.conf
example:

Code:
omegacoin_conf=root/.omegacoincore/omegacoin.conf

et port open

check sudo ufw status

I added
Code:
omegacoin_conf=/home/MYUSERNAMEHERE/.omegacoincore/omegacoin.conf
into sentinel.conf obviously with my username in there, which port should i be checking? none of the ones mentioned in the errors have been mentioned anywhere else


EDIT: although the sentinel test failed 1 passed 22 in the OMEGA wallet my MN status changed form WATCHDOG_EXPIRED to ENABLED, sooo i guess its working?


you are Online & working  Grin
test type and original file Sentinels
"he answers perfect"

bitnod (OP)
Full Member
***
Offline Offline

Activity: 434
Merit: 101


View Profile WWW
February 20, 2018, 09:05:16 PM
 #70




LISTED

matthew_smith
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
February 20, 2018, 09:11:26 PM
 #71

omega coin masternode pool

http://109.235.67.6/getting_started

moltiplicate you reward ..good job

 Cool Cool Cool
bitnod (OP)
Full Member
***
Offline Offline

Activity: 434
Merit: 101


View Profile WWW
February 20, 2018, 09:21:29 PM
 #72

omega coin masternode pool

http://109.235.67.6/getting_started

moltiplicate you reward ..good job

 Cool Cool Cool

Hello thanks for the initiative
not tested

reviewing the quality

Quote
set up a domain name
&
ssl

the community thanks you in advance
cryptoaddiction
Jr. Member
*
Offline Offline

Activity: 36
Merit: 1


View Profile
February 20, 2018, 10:07:43 PM
 #73

Every time I click on the Discord link it tells me expired. Can someone provide me a link so I can join.

ALQO.org - PhilsCurrency- The Future
matthew_smith
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
February 20, 2018, 10:11:31 PM
 #74

thanks for the advice, this and a pool being perfected in a few days it will be complete and havra all the requirements, next announcement (smithpool) and if you'll please add the coin also there

greetings matthew smith
bitnod (OP)
Full Member
***
Offline Offline

Activity: 434
Merit: 101


View Profile WWW
February 20, 2018, 10:11:44 PM
 #75

Every time I click on the Discord link it tells me expired. Can someone provide me a link so I can join.


Solved. Welcome !.

bitnod (OP)
Full Member
***
Offline Offline

Activity: 434
Merit: 101


View Profile WWW
February 20, 2018, 10:23:26 PM
 #76

thanks for the advice, this and a pool being perfected in a few days it will be complete and havra all the requirements, next announcement (smithpool) and if you'll please add the coin also there

greetings matthew smith

Thx matthew smith
TrMark
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
February 20, 2018, 10:49:08 PM
 #77

How can I move coins from my wallet? I wanted to move my MN reward straight away but when i try to send it it says i have insufficient funds even though I'm only trying to move a small amount

I tried stopping the MN with "omegacoin-cli stop" but it still wont let me move any
Finnedsgang
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
February 20, 2018, 10:51:06 PM
 #78

thanks for the advice, this and a pool being perfected in a few days it will be complete and havra all the requirements, next announcement (smithpool) and if you'll please add the coin also there

greetings matthew smith

Thx matthew smith

hi, which miner i should use to mine omega coin?
i placed an order on crypto bridge but i would also like to mine some: Can you explain where to download the miner and how to configure it?
I just downloaded the wallet omegacoincore
TrMark
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
February 20, 2018, 11:07:30 PM
 #79

How can I move coins from my wallet? I wanted to move my MN reward straight away but when i try to send it it says i have insufficient funds even though I'm only trying to move a small amount

I tried stopping the MN with "omegacoin-cli stop" but it still wont let me move any

Nevermind i just hadn't enabled coin control
bitnod (OP)
Full Member
***
Offline Offline

Activity: 434
Merit: 101


View Profile WWW
February 20, 2018, 11:33:24 PM
 #80

How can I move coins from my wallet? I wanted to move my MN reward straight away but when i try to send it it says i have insufficient funds even though I'm only trying to move a small amount

I tried stopping the MN with "omegacoin-cli stop" but it still wont let me move any

wait few minuts confirmation
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!