Pages:
Author

Topic: [ANN]INNOVA - We strive for innovation and adoption! | Hybrid Tribus coin - page 47. (Read 154438 times)

full member
Activity: 280
Merit: 100
Hi guys

I'm a noob in this masternode thing, and too impatient, my new masternode has 25 hours+ and still no reward (https://masternodes.online/ says i should expect reward at 23 +-), the status in the wallet says "enabled" and innova-cli masternode status in the VPS says:

Code:
"status": "Masternode successfully started"


Is there something more than i should double check?

It means it's working, right now even for old masternodes it takes time to get a reward. It pays once a day.
sr. member
Activity: 434
Merit: 250
Hi guys

I'm a noob in this masternode thing, and too impatient, my new masternode has 25 hours+ and still no reward (https://masternodes.online/ says i should expect reward at 23 +-), the status in the wallet says "enabled" and innova-cli masternode status in the VPS says:

Code:
"status": "Masternode successfully started"


Is there something more than i should double check?
member
Activity: 126
Merit: 10
I see that some skilled people are here. I have a question about forks.

If I have turned on wallet all the time and it is not doing POS, POW or not hosting MN. If I use it only for sending and receiving coins.
Can that wallet go to fork chain?
newbie
Activity: 9
Merit: 0
I think you should expect to update the blockchain, your wallet is sicronizada? If not, wait for sychronization.

Yes, wallet is synchronized.

UPD: It's okay, got 3 confirmations already. Nothnig to worry about.
sr. member
Activity: 1204
Merit: 252
Guys, I sent Innova from my qt-wallet, got transaction id. But INN block explorer doesn't see this transaction. Is that okay?

I think you should expect to update the blockchain, your wallet is sicronizada? If not, wait for sychronization.
newbie
Activity: 9
Merit: 0
Guys, I sent Innova from my qt-wallet, got transaction id. But INN block explorer doesn't see this transaction. Is that okay?
full member
Activity: 193
Merit: 100
from very beginning with this coin never reget about it also joined giveway

https://twitter.com/BoomJeen
newbie
Activity: 6
Merit: 0
@easyCode Try changing the configfile from

    rpc=user

to

    rpcuser=whatever

I had a lot of trouble setting up my MN at first, and when I dug into the sentinel code, it seemed that the parameter should be 'rpcuser' not 'user'.

After that change, it worked for me.

Good luck

No. I talking about if you set

rpcuser=user  (when user - is name of user)

Sentinel will bad parse this config.

rpcuser=kdfjkdfjhfh is good
rpcuser=user - bad
newbie
Activity: 10
Merit: 0
@easyCode Try changing the configfile from

    rpc=user

to

    rpcuser=whatever

I had a lot of trouble setting up my MN at first, and when I dug into the sentinel code, it seemed that the parameter should be 'rpcuser' not 'user'.

After that change, it worked for me.

Good luck
newbie
Activity: 6
Merit: 0
Oops! If you set rpcuser to "user" in config ....

    @classmethod
    def get_rpc_creds(self, data, network='mainnet'):
        # get rpc info from dash.conf
        match = re.findall(r'rpc(user|password|port)=(.*?)$', data, re.MULTILINE)

        # python >= 2.7
        creds = {key: value for (key, value) in match}

        # standard Dash defaults...
        default_port = 9998 if (network == 'mainnet') else 19998

        # use default port for network if not specified in dash.conf
        if not ('port' in creds):
            creds[u'port'] = default_port

        # convert to an int if taken from dash.conf
        creds[u'port'] = int(creds[u'port'])

        # return a dictionary with RPC credential key, value pairs
        return creds


and after

    @property
    def rpc_connection(self):
        return AuthServiceProxy("http://{0}:{1}@{2}:{3}".format(*self.creds))

We have "401 unauthorized"  Grin

full member
Activity: 210
Merit: 102
Apply for a free drop
iESPHKCP531XRirA2cNp5SZ9i1cX4Kpeiz
newbie
Activity: 6
Merit: 0
Hmmm

if I place


rpcauth=user:xxxxxxxxxxxxxxxxx

in innova config, curl works fine.  But sentinel is not. 401 unauthorized again
newbie
Activity: 6
Merit: 0
Hello. I was compiled innova from source last night. rpc didnt work

/innova-cli getinfo wroks fine

 {
  "version": 120109,
  "protocolversion": 70206,
  "walletversion": 61000,
  "balance": 999.99898060,
  "privatesend_balance": 0.00000000,
  "blocks": 31261,
  "timeoffset": 0,
  "connections": 8,
  "proxy": "",
  "difficulty": 444.0228668219352,
  "testnet": false,
  "keypoololdest": 1512392330,
  "keypoolsize": 1001,
  "paytxfee": 0.00000000,
  "relayfee": 0.00010000,
  "errors": ""
}



But curl dont work fine.


debug.log
2017-12-04 20:20:51 Innova Core version v0.12.1.9-4d1cf19-dirty (2017-11-17 15:04:54 +0300)
...
2017-12-05 05:35:52 ThreadRPCServer incorrect password attempt from 127.0.0.1:40456

innova.conf
rpc=user
rpcpassword=password

netstat -na|grep innova

tcp        0      0 127.0.0.1:8818          0.0.0.0:*               LISTEN      11107/innovad
tcp        0      0 0.0.0.0:14520           0.0.0.0:*               LISTEN      11107/innovad

curl -v —user user:password —data-binary '{"jsonrpc":"1.0","id":"curltext","method":"getinfo","params":[]}' -H 'content-type:text/plain;' http://127.0.0.1:8818

* Rebuilt URL to: http://127.0.0.1:8818/
* Hostname was NOT found in DNS cache
*   Trying 127.0.0.1...
* Connected to 127.0.0.1 (127.0.0.1) port 8818 (#0)
* Server auth using Basic with user 'user'
> POST / HTTP/1.1
> Authorization: Basic dXNlcjpwYXNzd29yZA==
> User-Agent: curl/7.35.0
> Host: 127.0.0.1:8818
> Accept: */*
> content-type:text/plain;
> Content-Length: 64
>
* upload completely sent off: 64 out of 64 bytes
< HTTP/1.1 401 Unauthorized
* Authentication problem. Ignoring this.
< WWW-Authenticate: Basic realm="jsonrpc"
< Date: Tue, 05 Dec 2017 05:27:24 GMT
< Content-Length: 0
< Content-Type: text/html; charset=ISO-8859-1
<
* Connection #0 to host 127.0.0.1 left intact

Tried to change default rpc port to 19118. No effect. innova-cli works fine. curl shows 401 Unauthorized
member
Activity: 224
Merit: 10
Guys, you can check the profitability of the coin at https://www.crypto-coinz.net/crypto-calculator/


numbers from this calculator are not realistic. whattomine value is close to real values
full member
Activity: 336
Merit: 100
https://www.crypto-coinz.net
Guys, you can check the profitability of the coin at https://www.crypto-coinz.net/crypto-calculator/
full member
Activity: 155
Merit: 100

New INNOVA Pool:


https://crc.cryptopros.us 0.5% Fee!!

-a neoscrypt -o stratum+tcp://crc.cryptopros.us:4233 -u [Your Wallet] -p c=INN

sr. member
Activity: 457
Merit: 251
The number of masternode is increasing, the whole network is growing. The daily return is also profitable, and I am planning to create a new masternode.
full member
Activity: 392
Merit: 112
inovation in a consept with  security on main focus , and So far Asic restance is popular to heard
i think this can will be revolution in future , and have more people in the world for join ,
https://twitter.com/InnovaCoin/status/937611239055912960
good for change giveaway , like for dev for give update
member
Activity: 462
Merit: 10
Hey I asked this question but can't remember if it got answered. But for the 'recommend a suggestion for the marketplace's is that in regards to what products should be listed or is it referring to marketplace functions/features?
member
Activity: 294
Merit: 10
Innova team was a post stating everyone will be refunded... And thats simple math.
I was gone for few days, when I got back I installed the sentinel
Downtime(days)  x  coins / nodes = reward
Pages:
Jump to: