Bitcoin Forum
April 26, 2024, 02:31:38 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 [82] 83 84 85 86 87 88 89 90 91 92 »
  Print  
Author Topic: [ANN][MASTERNODE] Monoeci - A cryptocurrency for Monaco  (Read 102415 times)
hoehnea
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
August 10, 2018, 05:28:45 AM
 #1621

today i got this error by testing sentinel:

alex@unassigned-hostname:~/sentinel$ ./venv/bin/py.test ./test
======================================================= test session starts ========================================================
platform linux2 -- Python 2.7.12, pytest-3.0.1, py-1.4.31, pluggy-0.3.1
rootdir: /home/alex/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')
E       assert False
E        +  where False = hasattr(<monoecid.monoeciDaemon instance at 0x7fab16693e18>, 'rpc_connection')

test/integration/test_jsonrpc.py:30: AssertionError
=============================================== 1 failed, 19 passed in 0.46 seconds ================================================
alex@unassigned-hostname:~/sentinel$



SOLVED: set shorter rpc password in monoeci.conf

Hi: How do you do this: "set shorter rpc password in monoeci.conf"
I have the same problem
Thanks

My error is like this

    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')
E       assert False
E        +  where False = hasattr(<monoecid.MonoeciDaemon instance at 0x7f85b107bdd0>, 'rpc_connection')

test/integration/test_jsonrpc.py:30: AssertionError
===================== 1 failed, 22 passed in 0.19 seconds

Can you help me fix that? The rpcpassword is from VPS. I cant change that.

1714098698
Hero Member
*
Offline Offline

Posts: 1714098698

View Profile Personal Message (Offline)

Ignore
1714098698
Reply with quote  #2

1714098698
Report to moderator
It is a common myth that Bitcoin is ruled by a majority of miners. This is not true. Bitcoin miners "vote" on the ordering of transactions, but that's all they do. They can't vote to change the network rules.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
n03202
Newbie
*
Offline Offline

Activity: 87
Merit: 0


View Profile WWW
August 10, 2018, 07:22:01 AM
 #1622

today i got this error by testing sentinel:

alex@unassigned-hostname:~/sentinel$ ./venv/bin/py.test ./test
======================================================= test session starts ========================================================
platform linux2 -- Python 2.7.12, pytest-3.0.1, py-1.4.31, pluggy-0.3.1
rootdir: /home/alex/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')
E       assert False
E        +  where False = hasattr(<monoecid.monoeciDaemon instance at 0x7fab16693e18>, 'rpc_connection')

test/integration/test_jsonrpc.py:30: AssertionError
=============================================== 1 failed, 19 passed in 0.46 seconds ================================================
alex@unassigned-hostname:~/sentinel$



SOLVED: set shorter rpc password in monoeci.conf

Hi: How do you do this: "set shorter rpc password in monoeci.conf"
I have the same problem
Thanks

My error is like this

    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')
E       assert False
E        +  where False = hasattr(<monoecid.MonoeciDaemon instance at 0x7f85b107bdd0>, 'rpc_connection')

test/integration/test_jsonrpc.py:30: AssertionError
===================== 1 failed, 22 passed in 0.19 seconds

Can you help me fix that? The rpcpassword is from VPS. I cant change that.



Hi. The problem you said happened to me few month ago.
The solution is simple. You have to check your monoeci.conf file which is in your linux wallet (.monoeciCore/monoeci.conf)

When you enter rpcuser to the conf file, writing with spaces or special characters causes such an error.
(Bad example : rpcuser= I AM A R@BOT, Good example=Iamarobot)


So if you have a blank space in your text file, delete the "blank".
And you have a long rpcusername, reduce the length

Then your sentinel test will work fine.
Xamito
Full Member
***
Offline Offline

Activity: 252
Merit: 107


View Profile
August 12, 2018, 09:44:38 AM
 #1623

Some informations regarding the swap would be appreciate... I can't find anything about it
dandan1010
Member
**
Offline Offline

Activity: 161
Merit: 10


View Profile
August 12, 2018, 09:50:51 AM
 #1624

This coin has more exposure in Monaco? Is this a coin with which can be paid in Monaco for services, for good, for rooms?
wangxiaoyan600
Member
**
Offline Offline

Activity: 350
Merit: 11


View Profile
August 12, 2018, 09:52:29 AM
 #1625

Monoeci coin project is worthy of further expectations, because the concept of the project, the route is correct, technical strength is also
Driendy
Full Member
***
Offline Offline

Activity: 334
Merit: 101


View Profile
August 12, 2018, 11:58:04 AM
 #1626

Some informations regarding the swap would be appreciate... I can't find anything about it

What tells you there will be a swap ? I don't get it. The swap would be a difficult transition for this coin . We have so much based on the existing coins like the paper wallet, or masternode. Are they now going to rebuild all that from scratch . I am not a specialist but also I don't see what's wrong technically with this coin .

Btw if anyone could shed light on the fuss around Dimitrii having left the project and/or dumped his coins I would be very grateful. I am trying (and I believe this is the case of many) to understand how we could fall that low and if this project worth investing in. Any insight will be helpful. Thanks
n03202
Newbie
*
Offline Offline

Activity: 87
Merit: 0


View Profile WWW
August 13, 2018, 12:37:58 AM
 #1627

This coin has more exposure in Monaco? Is this a coin with which can be paid in Monaco for services, for good, for rooms?

Currently, Car dealers and sushi stores are connected with monoeci. However, they plan to expand into real estate and Yacht companies in the future.


Some informations regarding the swap would be appreciate... I can't find anything about it

What tells you there will be a swap ? I don't get it. The swap would be a difficult transition for this coin . We have so much based on the existing coins like the paper wallet, or masternode. Are they now going to rebuild all that from scratch . I am not a specialist but also I don't see what's wrong technically with this coin .

Btw if anyone could shed light on the fuss around Dimitrii having left the project and/or dumped his coins I would be very grateful. I am trying (and I believe this is the case of many) to understand how we could fall that low and if this project worth investing in. Any insight will be helpful. Thanks


1.Dimitri said in the discord why they are doing swap. The reason for doing swap is to switch to PoS based coin. It also aims to apply smart contracts for use in crowdfunding and real estate transactions.
And in my personal opinion, dark coin based on anonymity is likely to be opposed by the government. Dash-based code has good features, including governance, etc. But the dark send feature is likely to be a problem in the real world. Moving assets without knowing the government can pose problems for the national economy. So they will not want it.
Of course, They can delete the code. However, this is only the developer's point of view. From a government point of view, it is highly likely that they do not want the problematic codebase. If monoeci had spread around the world like DASH, it would be difficult for one country to block. But now monoeci is starting. Therefore, monoeci team should not fight the government.

Rather, unlike most other coins, monoeci is actively communicating with the Monaco government.  Smiley


2.The developer did not sell coins. You can check that point in the block explorer.
The current problem is that the monoeci-market is still small. It is easier to adjust the market price, especially since many coins are not circulated, including the masternode, burned coins and developer-owned coin.
neoscorpius
Jr. Member
*
Offline Offline

Activity: 226
Merit: 1


View Profile
August 13, 2018, 03:12:34 PM
 #1628


If the team conceived a swap of coins, which algorithm will now be used? I understand this will be some rebranding that is designed to attract attention to the project.

They will change to PoS. But the detailed hash function(X11, SHA Blake etc..) and detailed algorithm is not yet known.


I know that there was a tremendous impact on the market because of rebranding. However, some of the phrases have been modified strategically.

The team will continue to use the logo and the name monoeci. Based on the Principality of Monaco, the development team will try to use monoeciit closely in real life.

In fact, the reason for the swap is to include the smart contract function for crowdfunding in the Principality of Monaco. They continue to keep in touch with monoeci partners, such as Yacht vendor, local wine seller. A real estate company, etc.



The only thing that has changed is that the phrase "Cryptocurrency for monaco" is excluded.
That part has changed according to local government recommendations, as monacocoin has been renamed to monoeci.

When a developer is confronted with the government, they can not achieve the goal that they really want to do.-cryptocurrency for real life, based on local foundation.
See MONACO(MCO). The MCO changed its name because it eventually used the Monaco brand illegally.

Monoeci team could do things like ATM installation or Not changing phrase without following the government's recommendation. In the end, however, the project will not grow in the medium to long term.

So monoeci team changed the phrase according to the government's recommendation. It is not the level of rebranding that you often see in the world of cryptocurrency.

Excellent description of the project and further development goals. The development team is smart with the goals and development of the business as a whole. Here the project will become really closer to people and will have demand in everyday life.
Toolhead
Full Member
***
Offline Offline

Activity: 178
Merit: 101


View Profile
August 14, 2018, 11:22:08 PM
 #1629

Hello,

I have my first Monoeci masternode VPS up and running!

Can I add now more Monoeci masternodes on more VPS or do I have to spend 1000 xmcc for each masternode I want to add?

Perhaps that´s a silly question, but I am new to this concept.

Thx guys!
egain
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
August 14, 2018, 11:25:06 PM
 #1630

After Venezuela now manaco launch ICO.
bluefox37
Newbie
*
Offline Offline

Activity: 82
Merit: 0


View Profile
August 15, 2018, 08:51:34 AM
 #1631

Hello,

I have my first Monoeci masternode VPS up and running!

Can I add now more Monoeci masternodes on more VPS or do I have to spend 1000 xmcc for each masternode I want to add?

Perhaps that´s a silly question, but I am new to this concept.

Thx guys!

For each Masternode you need 1000 XMCC which are very cheap at the moment. Also cheap VPS providers at the moment.
n03202
Newbie
*
Offline Offline

Activity: 87
Merit: 0


View Profile WWW
August 15, 2018, 11:20:34 PM
 #1632

The co-founder of monoeci, Dimitri Jeangerard has returned from his vacations  Grin

Most of bitcointalk people are not in the discord, so I'll write his words here.

============================================
Dimitri Jeangerard : Just came back from vacations guys, was good to take some time with something else than crypto on my mind. Well, I am an investor too so quite a blow when I saw the general market state, but that's the game. The greater the correction the greater the following uprise ! A lot of friends investing in crypto are in a bad mood right now, but cheer up, think long term, think about the technology, the projects you have invested in and the true value you would give them. At some point, the market always go back to its real value, then go to overpriced, then to real value, then to underpriced. Altcoins are a very young market compared to Bitcoin, I think we have seen nothing yet even if a lot of people are capitulating right now.

Dimitri Jeangerard : Right now, we're working on the second version of Monoeci implementing smart contracts, integrated exchange, fastest transactions and more. A new website is being developped too, the actual one being just temporary and more a pain in the ass than anything else.

In September, every member will be active again and we will focus again on real adoption. I am still personally working on the ATM case, I don't want to let it go like this, but big lack of understanding from the government side. So if we do it, we need to be irreproachable.

Projects are highly dependants of the general trends of the cryptocurrency market, once we go back to uptrend, it should be a really long one and it will really benefits projects focusing on real applications.
=======================================

I am thinking of increasing the number of masternode  Roll Eyes
Lucasgabd
Legendary
*
Offline Offline

Activity: 2506
Merit: 1113


There's no need to be upset


View Profile
August 16, 2018, 01:47:00 PM
 #1633

The co-founder of monoeci, Dimitri Jeangerard has returned from his vacations  Grin

Most of bitcointalk people are not in the discord, so I'll write his words here.

============================================
Dimitri Jeangerard : Just came back from vacations guys, was good to take some time with something else than crypto on my mind. Well, I am an investor too so quite a blow when I saw the general market state, but that's the game. The greater the correction the greater the following uprise ! A lot of friends investing in crypto are in a bad mood right now, but cheer up, think long term, think about the technology, the projects you have invested in and the true value you would give them. At some point, the market always go back to its real value, then go to overpriced, then to real value, then to underpriced. Altcoins are a very young market compared to Bitcoin, I think we have seen nothing yet even if a lot of people are capitulating right now.

Dimitri Jeangerard : Right now, we're working on the second version of Monoeci implementing smart contracts, integrated exchange, fastest transactions and more. A new website is being developped too, the actual one being just temporary and more a pain in the ass than anything else.

In September, every member will be active again and we will focus again on real adoption. I am still personally working on the ATM case, I don't want to let it go like this, but big lack of understanding from the government side. So if we do it, we need to be irreproachable.

Projects are highly dependants of the general trends of the cryptocurrency market, once we go back to uptrend, it should be a really long one and it will really benefits projects focusing on real applications.
=======================================

I am thinking of increasing the number of masternode  Roll Eyes


thank you so much for reposting it here!

.
.DuelbitsSPORTS.
▄▄▄███████▄▄▄
▄▄█████████████████▄▄
▄██████████████████████▄
██████████████████████████
███████████████████████████
██████████████████████████████
██████████████████████████████
█████████████████████████████
███████████████████████████
█████████████████████████
▀████████████████████████
▀▀███████████████████
██████████████████████████████
██
██
██
██

██
██
██
██

██
██
██
████████▄▄▄▄██▄▄▄██
███▄█▀▄▄▀███▄█████
█████████████▀▀▀██
██▀ ▀██████████████████
███▄███████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
▀█████████████████████▀
▀▀███████████████▀▀
▀▀▀▀█▀▀▀▀
OFFICIAL EUROPEAN
BETTING PARTNER OF
ASTON VILLA FC
██
██
██
██

██
██
██
██

██
██
██
10%   CASHBACK   
          100%   MULTICHARGER   
n03202
Newbie
*
Offline Offline

Activity: 87
Merit: 0


View Profile WWW
August 19, 2018, 11:18:02 PM
Last edit: August 20, 2018, 05:44:50 AM by n03202
 #1634

Price is now rising. I do not know if this is a short term or a long term.

But there is one thing I know. The people who blame the development team and look for the responsibility of the investment from outside will be quiet in this moment.

As always, if the investment is successful, they think they are doing well, and if prices fall, they blame others.
neoscorpius
Jr. Member
*
Offline Offline

Activity: 226
Merit: 1


View Profile
August 20, 2018, 01:43:36 PM
 #1635

I liked the saying that if the market returns to an uptrend, then this should be a long one. I really want to believe this. This will give a powerful impetus to the development of crypto currency in general.
KnyazED
Sr. Member
****
Offline Offline

Activity: 840
Merit: 251



View Profile
August 20, 2018, 01:56:45 PM
 #1636

I liked the saying that if the market returns to an uptrend, then this should be a long one. I really want to believe this. This will give a powerful impetus to the development of crypto currency in general.

I would like to believe in the bright future of the crippling market. I would like to see the price of my tokens very high. I would not like to look for another lesson, because I like to interact with cryptography.
n03202
Newbie
*
Offline Offline

Activity: 87
Merit: 0


View Profile WWW
August 21, 2018, 01:44:33 AM
 #1637

I liked the saying that if the market returns to an uptrend, then this should be a long one. I really want to believe this. This will give a powerful impetus to the development of crypto currency in general.

I would like to believe in the bright future of the crippling market. I would like to see the price of my tokens very high. I would not like to look for another lesson, because I like to interact with cryptography.

I also believe in the future of cryptocurrency. But I think about monoeci differently.

Others might think I'm crazy. But I dream of building monoeci-centered cryptocurrency market. Like BTC, ETH, Dash..

The future may be one year, three years later, or ten years later. But I believe that time will surely come.  Smiley
Micky25
Legendary
*
Offline Offline

Activity: 974
Merit: 1000



View Profile
August 22, 2018, 01:25:04 PM
 #1638

Hi!

Could somebody help? I get Error: Could not allocate outpoint (61 letters and numbers):0 for masternode x.x.x.x:24157

Thanks!
kurko2017
Newbie
*
Offline Offline

Activity: 112
Merit: 0


View Profile
August 22, 2018, 02:17:34 PM
 #1639

Hey. Please tell us more about this coin and what price will this coin have after listing on the exchange?
n03202
Newbie
*
Offline Offline

Activity: 87
Merit: 0


View Profile WWW
August 22, 2018, 02:55:17 PM
 #1640

Hi!

Could somebody help? I get Error: Could not allocate outpoint (61 letters and numbers):0 for masternode x.x.x.x:24157

Thanks!

First, check your masternode outputs(txid)

And if there is no problem in that part, do the start-alias command in Windows wallet


Hey. Please tell us more about this coin and what price will this coin have after listing on the exchange?

That is a funny question. Your choice of investment and purchase is your judgment. Do not let anyone else do it.
Pages: « 1 ... 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 [82] 83 84 85 86 87 88 89 90 91 92 »
  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!