Bitcoin Forum
May 29, 2024, 07:16:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 [252] 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 ... 310 »
  Print  
Author Topic: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4]  (Read 379544 times)
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
July 19, 2017, 11:57:44 AM
 #5021

Someone can say when they enabled the withdrawals in cryptopia of the bought coins since it was identified that crypopia was in the long chain as the nodes of drays, I have accumulated mondeas in cryptopia that I have not been able to withdraw, because they have disabled the withdrawals, and I have my First masternode syncronized and producing coins, the number of blocks is in: 979698

Is there any slack channel for this currency? Please share the invitation link thank you.
peachcakey
Full Member
***
Offline Offline

Activity: 144
Merit: 100



View Profile
July 19, 2017, 12:13:07 PM
 #5022

I have a problem to send mp... Sad try to send mp to gerry for the slack invit



Which slack invite? There is already an 8bit slack https://go8bit.slack.com/
The invite is https://join.slack.com/t/go8bit/shared_invite/MjE0ODE4NzU2NDA0LTE1MDA0NjU2MzAtZjU3MzIwMzVkYw
peachcakey
Full Member
***
Offline Offline

Activity: 144
Merit: 100



View Profile
July 19, 2017, 12:21:24 PM
 #5023

Someone can say when they enabled the withdrawals in cryptopia of the bought coins since it was identified that crypopia was in the long chain as the nodes of drays, I have accumulated mondeas in cryptopia that I have not been able to withdraw, because they have disabled the withdrawals, and I have my First masternode syncronized and producing coins, the number of blocks is in: 979698

Is there any slack channel for this currency? Please share the invitation link thank you.

Yes the slack is posted right before your message.
furcointalk
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
July 19, 2017, 02:24:01 PM
Last edit: July 19, 2017, 03:03:01 PM by furcointalk
 #5024

Address: 8N7xcRdW4p9sRLT3KzyJH7Hn7ABLmbMGMy
TxId: 63e34740e8df854b8375303922cdb64d451c5b7e84da221f882fcee922735f37


I have an up to date wallet but my 2000 coins are missing from bittrex withdrawal.
drays
Legendary
*
Offline Offline

Activity: 2534
Merit: 1073


View Profile
July 19, 2017, 04:21:06 PM
 #5025


Yes, masternodes work perfectly on Linux (Ubuntu in particular). Not sure there are instructions for this coin, but the process is the same as most other masternode coins, aka Dash or BitSend. The collateral is 112 8BIT, thats the only difference.

Also, masternode.conf cannot be used with the current source, but that is easily fixable, if anyone needs, I can send the instructions to patch the source.
Please send instructions

Heh, to write good instructions, I have to spend a lot of time, which I don't have unfortunately. To write bad instructions, I need much less time, but I don't want to write bad instructions.

However here is a good guide here for setting up ChainCoin masternodes: http://chaincoin.org/Setting%20up%20a%20Chaincoin%20Masternode%20-%20draft%20v.04.pdf
It is too detailed to my taste, but is a nice one. With some understanding, you can follow it, while replacing ChainCoin with 8bit where needed. Or just read it, to get an idea on what needs to be done. The first part (setting up a VPS) is completely generic, and can be followed blindly. The second part - needs to be adopted for 8bit. Volunteers welcome.


thanks, I was referring to if you could send the instructions to patch the source
The configuration of the generic mastery that I know, but what I asked for is what you offered previously

Sure. Will send it tomorrow (its late night here, and I am not at my pc). Remember - this little source patch is only needed to be able to run many masternodes at once using "masternode.conf". I suppose you should already know how to use masternode.conf, so will just send the small code patch.

Still waiting for the patch to run multiple masternodes on Ubuntu. It would be perfect if you can just mention the simplified version of the instructions for complete beginners like me, that have already read tutorials about masternodes but might encounter dificulties setting it up for 8bit.

Why are you waiting for the patch? Smiley
I promised to send it to the ones who request it, and so I did - I sent it to everyone who dropped me a PM. Youy were not one of them, because you never wrote me anything Smiley

Anyway, its not a secret to hide it. Here is that small patch (it is very simple - just add a missing code):
Code:
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp
index 733eb2e..ce70263 100644
--- a/src/bitcoind.cpp
+++ b/src/bitcoind.cpp
@@ -6,6 +6,7 @@
 #include "rpcserver.h"
 #include "rpcclient.h"
 #include "init.h"
+#include "masternodeconfig.h"
 #include <boost/algorithm/string/predicate.hpp>
 
 void WaitForShutdown(boost::thread_group* threadGroup)
@@ -63,6 +64,13 @@ bool AppInit(int argc, char* argv[])
             return false;
         }
 
+        // parse masternode.conf
+        std::string strErr;
+        if(!masternodeConfig.read(strErr)) {
+            fprintf(stderr,"Error reading masternode configuration file: %s\n", strErr.c_str());
+            return false;
+        }
+
         // Command-line RPC
         for (int i = 1; i < argc; i++)
             if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "8bit:"))

To use it, you need to paste this text into a file (for example called "8bit.patch"), then call "patch src/bitcoind.cpp 8bit.patch"

This is what I promised to give. I never promised to write instructions on how to run multiple masternodes. I would be happy to write such instructions, but have too little time to do that due to me being busy with my day job. There are lots of such instructions in the internet (just do a google search) for many other coins. I personally used one of those instructions few years ago to start my first MN setup. Those instructions could be used as a starting point for 8BIT ones. If someone does it, it would be great help to all the newbies here... But I cannot do that personally, due to time constraints. But I can help to review such doc, if somebody goes ahead and writes it.

To get some idea on how to run multiple masternodes, see this: https://dashpay.atlassian.net/wiki/pages/viewpage.action?pageId=1867877. Note that running multiple masternodes using "masternode.conf" is an advanced topic. If you are new to MN setup, try to run one MN first. Then try to run "hot wallet/cold wallet" setup. Then try to master multi-MN setups. It could take time and effort. I could help with advanced specific questions, but not with general ones.

... this space is not for rent ...
drays
Legendary
*
Offline Offline

Activity: 2534
Merit: 1073


View Profile
July 19, 2017, 04:27:52 PM
 #5026

Address: 8N7xcRdW4p9sRLT3KzyJH7Hn7ABLmbMGMy
TxId: 63e34740e8df854b8375303922cdb64d451c5b7e84da221f882fcee922735f37


I have an up to date wallet but my 2000 coins are missing from bittrex withdrawal.

Bittrex is on the wrong (short) fork. Their wallet is disabled for few days already, so I assume you did this withdrawal about a week ago. I also have coins on Bittrex, but didn't withdraw them, as I tried with small amount first, and saw them going nowhere. We can only hope Bittrex will re-sync to the correct (long) chain and resend the transactions. You could open a ticket with them. I have one opened ticket, they were answering initially, but after I offered them my help with re-syncing to the correct chain, I got nothing in reply. Hope they don't just discard our coins after they delist the wallet. Undecided Bug them, so they don't do it

... this space is not for rent ...
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
July 19, 2017, 04:34:07 PM
 #5027


Yes, masternodes work perfectly on Linux (Ubuntu in particular). Not sure there are instructions for this coin, but the process is the same as most other masternode coins, aka Dash or BitSend. The collateral is 112 8BIT, thats the only difference.

Also, masternode.conf cannot be used with the current source, but that is easily fixable, if anyone needs, I can send the instructions to patch the source.
Please send instructions

Heh, to write good instructions, I have to spend a lot of time, which I don't have unfortunately. To write bad instructions, I need much less time, but I don't want to write bad instructions.

However here is a good guide here for setting up ChainCoin masternodes: http://chaincoin.org/Setting%20up%20a%20Chaincoin%20Masternode%20-%20draft%20v.04.pdf
It is too detailed to my taste, but is a nice one. With some understanding, you can follow it, while replacing ChainCoin with 8bit where needed. Or just read it, to get an idea on what needs to be done. The first part (setting up a VPS) is completely generic, and can be followed blindly. The second part - needs to be adopted for 8bit. Volunteers welcome.


thanks, I was referring to if you could send the instructions to patch the source
The configuration of the generic mastery that I know, but what I asked for is what you offered previously

Sure. Will send it tomorrow (its late night here, and I am not at my pc). Remember - this little source patch is only needed to be able to run many masternodes at once using "masternode.conf". I suppose you should already know how to use masternode.conf, so will just send the small code patch.

Still waiting for the patch to run multiple masternodes on Ubuntu. It would be perfect if you can just mention the simplified version of the instructions for complete beginners like me, that have already read tutorials about masternodes but might encounter dificulties setting it up for 8bit.

Why are you waiting for the patch? Smiley
I promised to send it to the ones who request it, and so I did - I sent it to everyone who dropped me a PM. Youy were not one of them, because you never wrote me anything Smiley

Anyway, its not a secret to hide it. Here is that small patch (it is very simple - just add a missing code):
Code:
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp
index 733eb2e..ce70263 100644
--- a/src/bitcoind.cpp
+++ b/src/bitcoind.cpp
@@ -6,6 +6,7 @@
 #include "rpcserver.h"
 #include "rpcclient.h"
 #include "init.h"
+#include "masternodeconfig.h"
 #include <boost/algorithm/string/predicate.hpp>
 
 void WaitForShutdown(boost::thread_group* threadGroup)
@@ -63,6 +64,13 @@ bool AppInit(int argc, char* argv[])
             return false;
         }
 
+        // parse masternode.conf
+        std::string strErr;
+        if(!masternodeConfig.read(strErr)) {
+            fprintf(stderr,"Error reading masternode configuration file: %s\n", strErr.c_str());
+            return false;
+        }
+
         // Command-line RPC
         for (int i = 1; i < argc; i++)
             if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "8bit:"))

To use it, you need to paste this text into a file (for example called "8bit.patch"), then call "patch src/bitcoind.cpp 8bit.patch"

This is what I promised to give. I never promised to write instructions on how to run multiple masternodes. I would be happy to write such instructions, but have too little time to do that due to me being busy with my day job. There are lots of such instructions in the internet (just do a google search) for many other coins. I personally used one of those instructions few years ago to start my first MN setup. Those instructions could be used as a starting point for 8BIT ones. If someone does it, it would be great help to all the newbies here... But I cannot do that personally, due to time constraints. But I can help to review such doc, if somebody goes ahead and writes it.

To get some idea on how to run multiple masternodes, see this: https://dashpay.atlassian.net/wiki/pages/viewpage.action?pageId=1867877. Note that running multiple masternodes using "masternode.conf" is an advanced topic. If you are new to MN setup, try to run one MN first. Then try to run "hot wallet/cold wallet" setup. Then try to master multi-MN setups. It could take time and effort. I could help with advanced specific questions, but not with general ones.

Thanks Drays that had done in arcticcoin, is the same procedure for multiple masternodes in the same wallet, very timely your contributions
peachcakey
Full Member
***
Offline Offline

Activity: 144
Merit: 100



View Profile
July 19, 2017, 07:04:26 PM
 #5028

Address: 8N7xcRdW4p9sRLT3KzyJH7Hn7ABLmbMGMy
TxId: 63e34740e8df854b8375303922cdb64d451c5b7e84da221f882fcee922735f37


I have an up to date wallet but my 2000 coins are missing from bittrex withdrawal.

Bittrex is on the wrong (short) fork. Their wallet is disabled for few days already, so I assume you did this withdrawal about a week ago. I also have coins on Bittrex, but didn't withdraw them, as I tried with small amount first, and saw them going nowhere. We can only hope Bittrex will re-sync to the correct (long) chain and resend the transactions. You could open a ticket with them. I have one opened ticket, they were answering initially, but after I offered them my help with re-syncing to the correct chain, I got nothing in reply. Hope they don't just discard our coins after they delist the wallet. Undecided Bug them, so they don't do it

Already encouraged people to do so on our Slack & Telegram groups - Pinned messages so everyone can see them. You are more than welcome to join the slack and telegram. I'm sure you have a lot to contribute and your contribution would be greatly appreciated.
furcointalk
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
July 19, 2017, 09:30:29 PM
 #5029

Address: 8N7xcRdW4p9sRLT3KzyJH7Hn7ABLmbMGMy
TxId: 63e34740e8df854b8375303922cdb64d451c5b7e84da221f882fcee922735f37


I have an up to date wallet but my 2000 coins are missing from bittrex withdrawal.

Bittrex is on the wrong (short) fork. Their wallet is disabled for few days already, so I assume you did this withdrawal about a week ago. I also have coins on Bittrex, but didn't withdraw them, as I tried with small amount first, and saw them going nowhere. We can only hope Bittrex will re-sync to the correct (long) chain and resend the transactions. You could open a ticket with them. I have one opened ticket, they were answering initially, but after I offered them my help with re-syncing to the correct chain, I got nothing in reply. Hope they don't just discard our coins after they delist the wallet. Undecided Bug them, so they don't do it

Thanks for the reply. I've already withdrawn the coins, are they lost forever? What if I sync the short chain wallet? Can I recover my coins then?
Smokeyw
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile WWW
July 19, 2017, 09:38:21 PM
 #5030

wallet syncing is taking forever how do i fix this still 1 year and 48 weeks to go ??

The snapshot of the blockchain that shared drays, plus their masternodes as a source, allowed me to sync my wallet

finaly this worked thanks alot guys
when get this wallet fixed ?
wallet keep 3 day syncing dont past it
i want to send my coin and setup my masternode
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
July 19, 2017, 09:47:21 PM
 #5031

wallet syncing is taking forever how do i fix this still 1 year and 48 weeks to go ??

The snapshot of the blockchain that shared drays, plus their masternodes as a source, allowed me to sync my wallet

finaly this worked thanks alot guys
when get this wallet fixed ?
wallet keep 3 day syncing dont past it
i want to send my coin and setup my masternode


I have mine configured, did you do everything as it should be? Did you open the ports? Erase all the 8bit folder to exepcion of wallet.dat and 8bit.conf? Did you know the correct configuration in the .conf file?
xphound
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
July 19, 2017, 10:28:47 PM
 #5032

has anyone got upto date block link
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
July 19, 2017, 11:08:04 PM
 #5033

has anyone got upto date block link

I have my wallet in sync

I'll try to upload a copy of the blockchain so far, from my masternode, but I'll do it later and I'll share it in the slack
Smokeyw
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile WWW
July 19, 2017, 11:09:51 PM
 #5034

wallet syncing is taking forever how do i fix this still 1 year and 48 weeks to go ??

The snapshot of the blockchain that shared drays, plus their masternodes as a source, allowed me to sync my wallet

finaly this worked thanks alot guys
when get this wallet fixed ?
wallet keep 3 day syncing dont past it
i want to send my coin and setup my masternode


I have mine configured, did you do everything as it should be? Did you open the ports? Erase all the 8bit folder to exepcion of wallet.dat and 8bit.conf? Did you know the correct configuration in the .conf file?

why open ports for syncing my wallet ? yes i have replace all files that comes with the zip file and in my 8bitconfig file i got this
addnode=104.207.131.249
addnode=184.164.129.202
addnode=136.243.147.46
addnode=144.76.115.195
addnode=136.243.147.46
addnode=136.243.147.46
addnode=197.231.221.211
addnode=136.243.147.46
addnode=85.10.199.167
addnode=136.243.147.46
addnode=5.141.198.37
addnode=136.243.147.46
addnode=207.138.200.254
addnode=91.10.24.229
addnode=85.10.199.167
addnode=46.101.15.38
addnode=136.243.147.46
addnode=98.14.211.131
addnode=136.243.147.46
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
July 19, 2017, 11:13:08 PM
 #5035

wallet syncing is taking forever how do i fix this still 1 year and 48 weeks to go ??

The snapshot of the blockchain that shared drays, plus their masternodes as a source, allowed me to sync my wallet

finaly this worked thanks alot guys
when get this wallet fixed ?
wallet keep 3 day syncing dont past it
i want to send my coin and setup my masternode


I have mine configured, did you do everything as it should be? Did you open the ports? Erase all the 8bit folder to exepcion of wallet.dat and 8bit.conf? Did you know the correct configuration in the .conf file?

why open ports for syncing my wallet ? yes i have replace all files that comes with the zip file and in my 8bitconfig file i got this
addnode=104.207.131.249
addnode=184.164.129.202
addnode=136.243.147.46
addnode=144.76.115.195
addnode=136.243.147.46
addnode=136.243.147.46
addnode=197.231.221.211
addnode=136.243.147.46
addnode=85.10.199.167
addnode=136.243.147.46
addnode=5.141.198.37
addnode=136.243.147.46
addnode=207.138.200.254
addnode=91.10.24.229
addnode=85.10.199.167
addnode=46.101.15.38
addnode=136.243.147.46
addnode=98.14.211.131
addnode=136.243.147.46

Well if you do not want to open the ports it will not work, maybe you do not know that the rpc ports open for the port allows the connections to it, without connections correct the speed of the synchronization is slow, and the wallet is stuck, I say because it happened, Configure everything well if you want to synchronize your wallet and I have synchronized 5 to configure masternodes
Smokeyw
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile WWW
July 19, 2017, 11:15:42 PM
 #5036

wallet syncing is taking forever how do i fix this still 1 year and 48 weeks to go ??

The snapshot of the blockchain that shared drays, plus their masternodes as a source, allowed me to sync my wallet

finaly this worked thanks alot guys
when get this wallet fixed ?
wallet keep 3 day syncing dont past it
i want to send my coin and setup my masternode


I have mine configured, did you do everything as it should be? Did you open the ports? Erase all the 8bit folder to exepcion of wallet.dat and 8bit.conf? Did you know the correct configuration in the .conf file?

why open ports for syncing my wallet ? yes i have replace all files that comes with the zip file and in my 8bitconfig file i got this
addnode=104.207.131.249
addnode=184.164.129.202
addnode=136.243.147.46
addnode=144.76.115.195
addnode=136.243.147.46
addnode=136.243.147.46
addnode=197.231.221.211
addnode=136.243.147.46
addnode=85.10.199.167
addnode=136.243.147.46
addnode=5.141.198.37
addnode=136.243.147.46
addnode=207.138.200.254
addnode=91.10.24.229
addnode=85.10.199.167
addnode=46.101.15.38
addnode=136.243.147.46
addnode=98.14.211.131
addnode=136.243.147.46

Well if you want'n to open the ports it will not work, maybe you do not know that the rpc ports open for the port allows the connections to it, without connections correct the speed of the synchronization is slow, and the wallet is stuck, I say because it happened, Configure everything well if you want to synchronize your wallet and I have synchronized 5 to configure masternodes
i dont use the masternode yet then i have to open my port i know that
but for only to use the wallet you never have to open any port
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
July 19, 2017, 11:19:15 PM
 #5037

wallet syncing is taking forever how do i fix this still 1 year and 48 weeks to go ??

The snapshot of the blockchain that shared drays, plus their masternodes as a source, allowed me to sync my wallet

finaly this worked thanks alot guys
when get this wallet fixed ?
wallet keep 3 day syncing dont past it
i want to send my coin and setup my masternode


I have mine configured, did you do everything as it should be? Did you open the ports? Erase all the 8bit folder to exepcion of wallet.dat and 8bit.conf? Did you know the correct configuration in the .conf file?

why open ports for syncing my wallet ? yes i have replace all files that comes with the zip file and in my 8bitconfig file i got this
addnode=104.207.131.249
addnode=184.164.129.202
addnode=136.243.147.46
addnode=144.76.115.195
addnode=136.243.147.46
addnode=136.243.147.46
addnode=197.231.221.211
addnode=136.243.147.46
addnode=85.10.199.167
addnode=136.243.147.46
addnode=5.141.198.37
addnode=136.243.147.46
addnode=207.138.200.254
addnode=91.10.24.229
addnode=85.10.199.167
addnode=46.101.15.38
addnode=136.243.147.46
addnode=98.14.211.131
addnode=136.243.147.46

Well if you want'n to open the ports it will not work, maybe you do not know that the rpc ports open for the port allows the connections to it, without connections correct the speed of the synchronization is slow, and the wallet is stuck, I say because it happened, Configure everything well if you want to synchronize your wallet and I have synchronized 5 to configure masternodes
i dont use the masternode yet then i have to open my port i know that
but for only to use the wallet you never have to open any port


I have faced synchronization problems, for not opening the ports of connection to the wallet in other currencies, and the portfolios have not had problem of bifurcation as with this currency, if you want to remain stuck, I do not understand to install a wallet but if not the Are you going to use
Smokeyw
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile WWW
July 19, 2017, 11:26:20 PM
 #5038

wallet syncing is taking forever how do i fix this still 1 year and 48 weeks to go ??

The snapshot of the blockchain that shared drays, plus their masternodes as a source, allowed me to sync my wallet

finaly this worked thanks alot guys
when get this wallet fixed ?
wallet keep 3 day syncing dont past it
i want to send my coin and setup my masternode


I have mine configured, did you do everything as it should be? Did you open the ports? Erase all the 8bit folder to exepcion of wallet.dat and 8bit.conf? Did you know the correct configuration in the .conf file?

why open ports for syncing my wallet ? yes i have replace all files that comes with the zip file and in my 8bitconfig file i got this
addnode=104.207.131.249
addnode=184.164.129.202
addnode=136.243.147.46
addnode=144.76.115.195
addnode=136.243.147.46
addnode=136.243.147.46
addnode=197.231.221.211
addnode=136.243.147.46
addnode=85.10.199.167
addnode=136.243.147.46
addnode=5.141.198.37
addnode=136.243.147.46
addnode=207.138.200.254
addnode=91.10.24.229
addnode=85.10.199.167
addnode=46.101.15.38
addnode=136.243.147.46
addnode=98.14.211.131
addnode=136.243.147.46

Well if you want'n to open the ports it will not work, maybe you do not know that the rpc ports open for the port allows the connections to it, without connections correct the speed of the synchronization is slow, and the wallet is stuck, I say because it happened, Configure everything well if you want to synchronize your wallet and I have synchronized 5 to configure masternodes
i dont use the masternode yet then i have to open my port i know that
but for only to use the wallet you never have to open any port


I have faced synchronization problems, for not opening the ports of connection to the wallet in other currencies, and the portfolios have not had problem of bifurcation as with this currency, if you want to remain stuck, I do not understand to install a wallet but if not the Are you going to use

maybe its my bad english srry about that
the wallet has 8 connections but it wont sync stays at 3 days
anyways i will wait since i cant get my coins from cryptopia because investigating network fork

teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
July 19, 2017, 11:30:04 PM
 #5039

wallet syncing is taking forever how do i fix this still 1 year and 48 weeks to go ??

The snapshot of the blockchain that shared drays, plus their masternodes as a source, allowed me to sync my wallet

finaly this worked thanks alot guys
when get this wallet fixed ?
wallet keep 3 day syncing dont past it
i want to send my coin and setup my masternode


I have mine configured, did you do everything as it should be? Did you open the ports? Erase all the 8bit folder to exepcion of wallet.dat and 8bit.conf? Did you know the correct configuration in the .conf file?

why open ports for syncing my wallet ? yes i have replace all files that comes with the zip file and in my 8bitconfig file i got this
addnode=104.207.131.249
addnode=184.164.129.202
addnode=136.243.147.46
addnode=144.76.115.195
addnode=136.243.147.46
addnode=136.243.147.46
addnode=197.231.221.211
addnode=136.243.147.46
addnode=85.10.199.167
addnode=136.243.147.46
addnode=5.141.198.37
addnode=136.243.147.46
addnode=207.138.200.254
addnode=91.10.24.229
addnode=85.10.199.167
addnode=46.101.15.38
addnode=136.243.147.46
addnode=98.14.211.131
addnode=136.243.147.46

Well if you want'n to open the ports it will not work, maybe you do not know that the rpc ports open for the port allows the connections to it, without connections correct the speed of the synchronization is slow, and the wallet is stuck, I say because it happened, Configure everything well if you want to synchronize your wallet and I have synchronized 5 to configure masternodes
i dont use the masternode yet then i have to open my port i know that
but for only to use the wallet you never have to open any port


I have faced synchronization problems, for not opening the ports of connection to the wallet in other currencies, and the portfolios have not had problem of bifurcation as with this currency, if you want to remain stuck, I do not understand to install a wallet but if not the Are you going to use

maybe its my bad english srry about that
the wallet has 8 connections but it wont sync stays at 3 days
anyways i will wait since i cant get my coins from cryptopia because investigating network fork



When did you buy I bought the 15 and when I synchronized my wallet appeared my coins, and my English is bad, but if you want I will share a copy of the blockchain in about 90 minutes, to download it and try to synchronize
instahater
Full Member
***
Offline Offline

Activity: 151
Merit: 100


View Profile
July 20, 2017, 12:06:50 AM
 #5040

This wallet is trash.. I can't sync past 11 days!! FML! This is why this coin is dead.
Pages: « 1 ... 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 [252] 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 ... 310 »
  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!