Bitcoin Forum
May 03, 2024, 10:16:23 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 22 23 24 25 26 27 28 29 30 31 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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 ... 152 »
  Print  
Author Topic: [ANN]INNOVA - We strive for innovation and adoption! | Hybrid Tribus coin  (Read 154372 times)
lentyna
Full Member
***
Offline Offline

Activity: 280
Merit: 100


View Profile
November 10, 2017, 06:07:43 AM
 #1421

Code:
root@MIAMNZEN1:~# git clone https://github.com/innovacoin/innova.git
fatal: destination path 'innova' already exists and is not an empty directory.
root@MIAMNZEN1:~# sudo ./autogen.sh
sudo: ./autogen.sh: command not found
root@MIAMNZEN1:~# sudo ./configure
sudo: ./configure: command not found
root@MIAMNZEN1:~# sudo make
make: *** No targets specified and no makefile found.  Stop.
root@MIAMNZEN1:~#

this error means that you already have innova directory, you can delete it and run it again or name it differently.

Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
yobigd20
Member
**
Offline Offline

Activity: 170
Merit: 10


View Profile
November 10, 2017, 08:00:49 AM
 #1422

I've followed the steps for a masternode and i've tried both ways (hosting masternode wallet on vps  and hosting the masternode wallet on windows) but in both cases when I enter 'masternode outputs' in the console or in the client wallet in ubuntu it just comes back blank.  any ideas?
tuanytcc
Member
**
Offline Offline

Activity: 476
Merit: 14

Bcnex - The Ultimate Blockchain Trading Platform


View Profile
November 10, 2017, 08:05:46 AM
 #1423

Has signature campaign been opened ? thanks

brainz1985
Jr. Member
*
Offline Offline

Activity: 56
Merit: 10


View Profile
November 10, 2017, 09:01:13 AM
 #1424

Nice to be part of this.
pmdcp
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
November 10, 2017, 09:57:59 AM
 #1425

http://
VPS has 4 gb worth of swap space. Typed: FREE and this is what it brought back:
Code:
              total        used        free      shared  buff/cache   available
Mem:         499940       42852       17724        5080      439364      420872
Swap:       5119996       19968     5100028

These are the steps I did:

# --------------------------
# 1. Install dependencies
# --------------------------
Code:
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool autotools-dev pkg-config bsdmainutils software-properties-common libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev

sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y

# --------------------------
# 2. Clone repo
# --------------------------
Code:
git clone https://github.com/innovacoin/innova.git

# --------------------------
# 3. Build innova
# --------------------------
Code:
sudo ./autogen.sh
sudo ./configure
sudo make

# --------------------------
# 4. Run innova daemon
# --------------------------
Code:
~/innova/src/innovad -daemon

# --------------------------
# 5. Stop innova daemon
# --------------------------
Code:
~/innova/src/innova-cli stop

# --------------------------
# 6. Edit config file
# --------------------------
Code:
vi ~/.innovacore/innova.conf

Add to file:
Code:
rpcuser=USERNAME
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0

# --------------------------
# 7. Start innovad
# --------------------------
Code:
~/innova/src/innovad

# --------------------------
# 8. Check last block synced
# --------------------------
Code:
~/innova/src/innova-cli getmininginfo

{
    "blocks" : 19057,
    "currentblocksize" : 0,
    "currentblocktx" : 0,
    "difficulty" : 86981.82878668,
    "blockvalue" : 150000000000,
    "netmhashps" : 1226758.61464298,
    "netstakeweight" : 303434916154333.12500000,
    "errors" : "",
    "pooledtx" : 0,
    "stakeweight" : {
        "minimum" : 0,
        "maximum" : 0,
        "combined" : 0
    },
    "testnet" : false
}

# --------------------------
# 9. On your local Windows innova wallet click Tools->Debug Console and type
# --------------------------
Code:
masternode genkey

Generates masternode private key: MASTERNODE_PRIVATE_KEY

Code:
getaccountaddress INN_MASTERNODE

Generates masternode address: GENERATED_MASTERNODE_ADDRESS

# --------------------------
# 10. Send 1000 INN to the address above and wait for 15 confirmations, Make sure to send 1000.1
# --------------------------


# --------------------------
# 11. Update your innova.conf file on VPS
# --------------------------
Code:
vi ~/.innovacore/innova.conf 

Add to the file:
Code:
rpcuser=USERNAME
rpcpassword=PASSWORD
bind=VPS_IP_ADDRESS:14520
masternode=1
masternodeprivkey=MASTERNODE_PRIVATE_KEY

# --------------------------
# 12. On Windows wallet console TYPE
# --------------------------
Code:
masternode outputs

{
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" : "1"
}

# --------------------------
# 13. On Windows edit masternode.conf
# --------------------------

Code:
#LABEL PUBLICIP:PORT MASTERNODEKEY COLLATERALTX INDEX

INN_MASTERNODE VPS_IP_ADDRESS:14520 MASTERNODE_PRIVATE_KEY xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1

# --------------------------
# 14. Start your VPS innovad daemon
# --------------------------
Code:
~/innova/src/innovad -daemon

# --------------------------
# 15. Restart your windows wallet
# --------------------------




Thanks a ton. Currently I am at a new issue:

Code:
root@MIAMNZEN1:~# git clone https://github.com/innovacoin/innova.git
fatal: destination path 'innova' already exists and is not an empty directory.
root@MIAMNZEN1:~# sudo ./autogen.sh
sudo: ./autogen.sh: command not found
root@MIAMNZEN1:~# sudo ./configure
sudo: ./configure: command not found
root@MIAMNZEN1:~# sudo make
make: *** No targets specified and no makefile found.  Stop.
root@MIAMNZEN1:~#

Currently my nodes show up ENABLED from a third party point of view but not sure if it is working. will wait to see if payments come through.
http://oi65.tinypic.com/r19ytz.jpg

For Reference... When checking Masternode Status on MN1:
Code:

{
  "vin": "CTxIn(COutPoint(TXOUTPUTOMITTEDFORPRIVACY, 1), scriptSig=)",
  "service": "walletip omitted:14520",
  "payee": "MN1 address omitted for privacy",
  "status": "Masternode successfully started"
}

Checking masternode status on MN2:
Code:
{
  "vin": "CTxIn(COutPoint(TXOUTPUTOMITTEDFORPRIVACY, 1), scriptSig=)",
  "service": "walletip omitted:14520",
  "payee": " address omitted for privacy",
  "status": "Masternode successfully started"
}

I get stuck at this point:

root@vultr:~# sudo ./autogen.sh
sudo: ./autogen.sh: command not found

Any solution?
GaiI102
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 10, 2017, 10:28:56 AM
 #1426

Ok I've attempted upgrading and now in some way I've were left with a brand new pocket book and also the coins from my final walletOraddress are no longer thereI did a backup while using back-up pocket book choice before I improved and tried to fix thingsHowever I can't use whatever choice to restore my pocket book from the back-up ?How am I designed to recover my pocket book in the backup I created?
firesec
Full Member
***
Offline Offline

Activity: 182
Merit: 104


Knowledge must be free !


View Profile
November 10, 2017, 10:49:21 AM
 #1427

Hey guys,

There are a lot of power outages lately in my area and had problems with my masternode. See below error
Not capable masternode: Masternode not in masternode list

Any clear way to fix this ?
I've tried to stop the daemon and restart it. I've also tried to remove peers.dat, blocks content or chainstate content and restart the daemon with -reindex but doesn't seem to fix the issue. Since we're at the beginning and blockchain height is still very low, I've just moved the coins to another wallet .. removed .innovacore dir, configure again the masternode with new innova address and seems that fix the problem.

For future cases, do we have a clear procedure what to do in cases like that ?   or a general masternode troubleshooting guide ?

Bitcoin address for donations:  3EfLoRWJwrXnep29drmhT19aPJcdqszswK
JohnHero
Member
**
Offline Offline

Activity: 168
Merit: 10


View Profile
November 10, 2017, 10:51:07 AM
 #1428

Really interesting project guys. You take the privacy of the blockchain to a whole new level by making those "Shadow Transactions", now the blockchain tehnology for sure is gonna become untrackable.
GerryMc
Copper Member
Newbie
*
Offline Offline

Activity: 122
Merit: 0

https://Zixx.chat


View Profile WWW
November 10, 2017, 11:37:49 AM
 #1429

Hello dev team,

Do you have any plans to join the discord group? There are 275 of us in the community there. It would be nice if the team could make themselves known on it, or join the group, to answer any questions people may have.

Having even one member of the team active in the discord would go a long way towards getting rid of the fear and distrust that's building up.

●                                                           Z I X X                                                           ●
[     DISCORD     ]  [    TWITTER    ]  [ ANN THREAD ]  [   FACEBOOK   ]
|    Automated Shared MNs    |   80% Masternode Rewards   |    Highest "Locked %"    |
Kr14
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
November 10, 2017, 01:27:33 PM
 #1430

Hello guys.
I like the project, I follow from the very beginning.
Dev, he actively participates in the promotion of the project, respekt !!!

I want to ask, more activity in the chat Discordapp, on Twitter cannal, you need good marketing. The coin has a great future, I believe in it.

Only forward !!!
antammedic
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
November 10, 2017, 01:38:14 PM
 #1431

wow. the yearly ROI (estimated one) is 841.7%. It's unbelievable statistics, but it's real. Thanks dev for the great project.
coinhunter_mt2
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 10, 2017, 01:40:03 PM
 #1432

wow. the yearly ROI (estimated one) is 841.7%. It's unbelievable statistics, but it's real. Thanks dev for the great project.
Yeah, check it there
http://mnrank.com/
It's really amazing ROI (yearly).
CoinStalker
Member
**
Offline Offline

Activity: 133
Merit: 10


View Profile
November 10, 2017, 01:40:22 PM
 #1433

Very promising project. ıf needed i'll translate documents into Turkish

BitcoinStuff (OP)
Sr. Member
****
Offline Offline

Activity: 333
Merit: 250



View Profile
November 10, 2017, 01:55:54 PM
 #1434

Hello everyone. We have just made an official Telegram Group for Innova. Join us here: https://t.me/innovaofficial

frostminer
Hero Member
*****
Offline Offline

Activity: 742
Merit: 505


View Profile WWW
November 10, 2017, 02:21:51 PM
 #1435

Hello everyone. We have just made an official Telegram Group for Innova. Join us here: https://t.me/innovaofficial

Telespam group.. no thanks.


There's a shitload of ppl wondering if you will join the discord or not.


Most coins with active communities have moved to discord these days.

pmdcp
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
November 10, 2017, 03:07:07 PM
 #1436

Hello everyone. We have just made an official Telegram Group for Innova. Join us here: https://t.me/innovaofficial

Telespam group.. no thanks.


There's a shitload of ppl wondering if you will join the discord or not.


Most coins with active communities have moved to discord these days.

What's the discord channel?
BitcoinStuff (OP)
Sr. Member
****
Offline Offline

Activity: 333
Merit: 250



View Profile
November 10, 2017, 04:50:58 PM
 #1437

Hello everyone. We have just made an official Telegram Group for Innova. Join us here: https://t.me/innovaofficial

Telespam group.. no thanks.


There's a shitload of ppl wondering if you will join the discord or not.


Most coins with active communities have moved to discord these days.

We are also members of the discord channel. We follow what people are discussing about. We are just very busy to answer every question there. But we will try to be more active from now on.

Kr14
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
November 10, 2017, 04:56:12 PM
 #1438

Hello everyone. We have just made an official Telegram Group for Innova. Join us here: https://t.me/innovaofficial

Telespam group.. no thanks.


There's a shitload of ppl wondering if you will join the discord or not.


Most coins with active communities have moved to discord these days.

We are also members of the discord channel. We follow what people are discussing about. We are just very busy to answer every question there. But we will try to be more active from now on.

Keep it up !! we are all very happy !! More activity !!!
erdee
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
November 10, 2017, 04:56:57 PM
 #1439

I've followed the steps for a masternode and i've tried both ways (hosting masternode wallet on vps  and hosting the masternode wallet on windows) but in both cases when I enter 'masternode outputs' in the console or in the client wallet in ubuntu it just comes back blank.  any ideas?

You need to wait for X amount of confirmations after transferring your coins before you type that in. I think with this coin it was 6 or 7 confirmations? I waited about 20 minutes after transferring my coins before typing "masternode outputs".
crackfoo
Legendary
*
Offline Offline

Activity: 3458
Merit: 1126



View Profile WWW
November 10, 2017, 05:05:07 PM
 #1440


added to OP would be great. I justed created a masternode as well.

Cheers

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
Pages: « 1 ... 22 23 24 25 26 27 28 29 30 31 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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 ... 152 »
  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!