Pages:
Author

Topic: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4] - page 52. (Read 379550 times)

legendary
Activity: 1778
Merit: 1000
Launch of Masternodecoin in approximately 23 hours, it is offering 1000 users the amount 52,000 coins to implement a masternode completely free, if certain requirements that can see in this thread are met
https://bitcointalksearch.org/topic/ann-mtnc-masternodecoin-multiple-privacy-center-platform-2056867

You can also win coins by keeping the currency signature on your profile,
By re-twiter
That looks like a pre-mined coin.
full member
Activity: 219
Merit: 100
Thanks for that... I tried what you said...

Copied text into file
Put file in 8bit dir
ran command: patch src/bitcoind.cpp 8bit.patch

Got this error message:

$patch src/bitcoind.cpp 8bit.patch
patching file src/bitcoind.cpp
patch: **** malformed patch at line 6:  #include "rpcserver.h"


Any idea what I did wrong?

That is strange, I tried to do this from scratch (cloned the repository from https://bitbucket.org/8bitcoin/8bit.git, then applied the patch) - and it worked perfectly. Probably some wrong symbol squeezed into the file when you copied it from forum.

Tried to just manually update the code... all seemed to compile ok, but when I load 8bit-qt and go to debug console... masternode list-conf, still comes back empty and masternode start-many doesn't start any nodes (have checked, all conf files should be correct).

I actually used that patch about one year ago to run 10-15 masternodes, and it worked perfectly. You should check if you do everything correctly... I used "8bitd" though, not 8bit-qt, but it should not make difference. Which directory did you put your masternode.conf in? Check the filename - should be all lowercase. If that doesn't help - run the "strace -f 8bitd" and look for the line where it opens "masternode.conf" (search "masternode.conf" in the output) - see what the function returns there. I would be happy to help, but it's hard to do without actual access to your server.

So it does appear to work if I stick with just the 8bitd, but doesn't work with 8bit-qt. Any ideas?

Oh. I have never used the Linux QT wallet, so didn't test it. Then maybe this could help additionally for QT wallet:
Code:
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
index 5eb6299..2211bc4 100644
--- a/src/qt/bitcoin.cpp
+++ b/src/qt/bitcoin.cpp
@@ -13,6 +13,7 @@
 #include "init.h"
 #include "util.h"
 #include "wallet.h"
+#include "masternodeconfig.h"
 #include "ui_interface.h"
 #include "paymentserver.h"
 #ifdef Q_OS_MAC
@@ -175,6 +176,13 @@ int main(int argc, char *argv[])
     else
         app.setApplicationName("8Bit-Qt");
 
+    string strErr;
+    if(!masternodeConfig.read(strErr)) {
+        QMessageBox::critical(0, QObject::tr("8bit Core"),
+                              QObject::tr("Error reading masternode configuration file: %1").arg(strErr.c_str()));
+        return false;
+    }
+
     // ... then GUI settings:
     OptionsModel optionsModel;
 

But this is completely untested change (I cannot even compile at the moment), so this is mostly to give you an idea on which direction to dig into Smiley

Gave the code a try and it seemed to work like a charm...

But now, when I run either the 8bitd or the GUI, it just eats memory like crazy, getting up to taking up 3 Gig per process till I have to kill it... also just stuck at block 1010219. Any idea what's going on?

FYI, just ran the old executable... same problem.

Noticed that Cryptopia wallet now open.

Seems odd... are you having any issues?
full member
Activity: 219
Merit: 100
Anyone else stuck on block 1010219?

Just sitting there and not going anywhere...
full member
Activity: 219
Merit: 100
So is there still no working blockchain explorer for 8bit? Without a working block explorer, we'll never get very far. We need a working block explorer (preferably one with an api), this will really show exchanges we're serious. Wish I had the technical know-how to build it...
hero member
Activity: 2114
Merit: 618
Can someone tell me the current block height of the long string?

Code:
if (string == chain) {
    blockheight = 1010142
}

Something like that  Grin

I'm trying to synchronize the wallet in another pc, because I play change PC, and the synchronization stays in 1 hour stuck, in one of the wallet using all the nodes that I've shared Drays, but using only those you told me that You use in your file 8bit.conf gets stuck in 10 hours, and there is no progress, could you share a snapshot please Drays?  Block 1010037

I managed to synchronize one of the wallets that has all the nodes that I passed drays, shows this block height 1010154 two minutes ago

Great! The block is correct. So I suppose there is no need to make another snapshot now (snapshots take about 6 hours to zip/download/upload for me, so I would rather leave prefer you to do it Smiley).

If it is that I pass to windows to run several masternodes at the same time, it is easier its configuration than in linux. Thanks Drays
legendary
Activity: 2576
Merit: 1073
Can someone tell me the current block height of the long string?

Code:
if (string == chain) {
    blockheight = 1010142
}

Something like that  Grin

I'm trying to synchronize the wallet in another pc, because I play change PC, and the synchronization stays in 1 hour stuck, in one of the wallet using all the nodes that I've shared Drays, but using only those you told me that You use in your file 8bit.conf gets stuck in 10 hours, and there is no progress, could you share a snapshot please Drays?  Block 1010037

I managed to synchronize one of the wallets that has all the nodes that I passed drays, shows this block height 1010154 two minutes ago

Great! The block is correct. So I suppose there is no need to make another snapshot now (snapshots take about 6 hours to zip/download/upload for me, so I would rather prefer you to do it Smiley).
legendary
Activity: 2576
Merit: 1073
Thanks for that... I tried what you said...

Copied text into file
Put file in 8bit dir
ran command: patch src/bitcoind.cpp 8bit.patch

Got this error message:

$patch src/bitcoind.cpp 8bit.patch
patching file src/bitcoind.cpp
patch: **** malformed patch at line 6:  #include "rpcserver.h"


Any idea what I did wrong?

That is strange, I tried to do this from scratch (cloned the repository from https://bitbucket.org/8bitcoin/8bit.git, then applied the patch) - and it worked perfectly. Probably some wrong symbol squeezed into the file when you copied it from forum.

Tried to just manually update the code... all seemed to compile ok, but when I load 8bit-qt and go to debug console... masternode list-conf, still comes back empty and masternode start-many doesn't start any nodes (have checked, all conf files should be correct).

I actually used that patch about one year ago to run 10-15 masternodes, and it worked perfectly. You should check if you do everything correctly... I used "8bitd" though, not 8bit-qt, but it should not make difference. Which directory did you put your masternode.conf in? Check the filename - should be all lowercase. If that doesn't help - run the "strace -f 8bitd" and look for the line where it opens "masternode.conf" (search "masternode.conf" in the output) - see what the function returns there. I would be happy to help, but it's hard to do without actual access to your server.

So it does appear to work if I stick with just the 8bitd, but doesn't work with 8bit-qt. Any ideas?

Oh. I have never used the Linux QT wallet, so didn't test it. Then maybe this could help additionally for QT wallet:
Code:
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
index 5eb6299..2211bc4 100644
--- a/src/qt/bitcoin.cpp
+++ b/src/qt/bitcoin.cpp
@@ -13,6 +13,7 @@
 #include "init.h"
 #include "util.h"
 #include "wallet.h"
+#include "masternodeconfig.h"
 #include "ui_interface.h"
 #include "paymentserver.h"
 #ifdef Q_OS_MAC
@@ -175,6 +176,13 @@ int main(int argc, char *argv[])
     else
         app.setApplicationName("8Bit-Qt");
 
+    string strErr;
+    if(!masternodeConfig.read(strErr)) {
+        QMessageBox::critical(0, QObject::tr("8bit Core"),
+                              QObject::tr("Error reading masternode configuration file: %1").arg(strErr.c_str()));
+        return false;
+    }
+
     // ... then GUI settings:
     OptionsModel optionsModel;
 

But this is completely untested change (I cannot even compile at the moment), so this is mostly to give you an idea on which direction to dig into Smiley
hero member
Activity: 2114
Merit: 618
Can someone tell me the current block height of the long string?

Code:
if (string == chain) {
    blockheight = 1010142
}

Something like that  Grin

I'm trying to synchronize the wallet in another pc, because I play change PC, and the synchronization stays in 1 hour stuck, in one of the wallet using all the nodes that I've shared Drays, but using only those you told me that You use in your file 8bit.conf gets stuck in 10 hours, and there is no progress, could you share a snapshot please Drays?  Block 1010037

I managed to synchronize one of the wallets that has all the nodes that I passed drays, shows this block height 1010154 two minutes ago
hero member
Activity: 2114
Merit: 618
Can someone tell me the current block height of the long string?

Code:
if (string == chain) {
    blockheight = 1010142
}

Something like that  Grin

I'm trying to synchronize the wallet in another pc, because I play change PC, and the synchronization stays in 1 hour stuck, in one of the wallet using all the nodes that I've shared Drays, but using only those you told me that You use in your file 8bit.conf gets stuck in 10 hours, and there is no progress, could you share a snapshot please Drays?  Block 1010037
legendary
Activity: 2576
Merit: 1073
Can someone tell me the current block height of the long string?

Code:
if (string == chain) {
    blockheight = 1010142
}

Something like that  Grin
hero member
Activity: 2114
Merit: 618
Thanks for that... I tried what you said...

Copied text into file
Put file in 8bit dir
ran command: patch src/bitcoind.cpp 8bit.patch

Got this error message:

$patch src/bitcoind.cpp 8bit.patch
patching file src/bitcoind.cpp
patch: **** malformed patch at line 6:  #include "rpcserver.h"


Any idea what I did wrong?

That is strange, I tried to do this from scratch (cloned the repository from https://bitbucket.org/8bitcoin/8bit.git, then applied the patch) - and it worked perfectly. Probably some wrong symbol squeezed into the file when you copied it from forum.

Tried to just manually update the code... all seemed to compile ok, but when I load 8bit-qt and go to debug console... masternode list-conf, still comes back empty and masternode start-many doesn't start any nodes (have checked, all conf files should be correct).

I actually used that patch about one year ago to run 10-15 masternodes, and it worked perfectly. You should check if you do everything correctly... I used "8bitd" though, not 8bit-qt, but it should not make difference. Which directory did you put your masternode.conf in? Check the filename - should be all lowercase. If that doesn't help - run the "strace -f 8bitd" and look for the line where it opens "masternode.conf" (search "masternode.conf" in the output) - see what the function returns there. I would be happy to help, but it's hard to do without actual access to your server.

So it does appear to work if I stick with just the 8bitd, but doesn't work with 8bit-qt. Any ideas?

Can someone tell me the current block height of the long string?
full member
Activity: 219
Merit: 100
Thanks for that... I tried what you said...

Copied text into file
Put file in 8bit dir
ran command: patch src/bitcoind.cpp 8bit.patch

Got this error message:

$patch src/bitcoind.cpp 8bit.patch
patching file src/bitcoind.cpp
patch: **** malformed patch at line 6:  #include "rpcserver.h"


Any idea what I did wrong?

That is strange, I tried to do this from scratch (cloned the repository from https://bitbucket.org/8bitcoin/8bit.git, then applied the patch) - and it worked perfectly. Probably some wrong symbol squeezed into the file when you copied it from forum.

Tried to just manually update the code... all seemed to compile ok, but when I load 8bit-qt and go to debug console... masternode list-conf, still comes back empty and masternode start-many doesn't start any nodes (have checked, all conf files should be correct).

I actually used that patch about one year ago to run 10-15 masternodes, and it worked perfectly. You should check if you do everything correctly... I used "8bitd" though, not 8bit-qt, but it should not make difference. Which directory did you put your masternode.conf in? Check the filename - should be all lowercase. If that doesn't help - run the "strace -f 8bitd" and look for the line where it opens "masternode.conf" (search "masternode.conf" in the output) - see what the function returns there. I would be happy to help, but it's hard to do without actual access to your server.

So it does appear to work if I stick with just the 8bitd, but doesn't work with 8bit-qt. Any ideas?
legendary
Activity: 2576
Merit: 1073
Thanks for that... I tried what you said...

Copied text into file
Put file in 8bit dir
ran command: patch src/bitcoind.cpp 8bit.patch

Got this error message:

$patch src/bitcoind.cpp 8bit.patch
patching file src/bitcoind.cpp
patch: **** malformed patch at line 6:  #include "rpcserver.h"


Any idea what I did wrong?

That is strange, I tried to do this from scratch (cloned the repository from https://bitbucket.org/8bitcoin/8bit.git, then applied the patch) - and it worked perfectly. Probably some wrong symbol squeezed into the file when you copied it from forum.

Tried to just manually update the code... all seemed to compile ok, but when I load 8bit-qt and go to debug console... masternode list-conf, still comes back empty and masternode start-many doesn't start any nodes (have checked, all conf files should be correct).

I actually used that patch about one year ago to run 10-15 masternodes, and it worked perfectly. You should check if you do everything correctly... I used "8bitd" though, not 8bit-qt, but it should not make difference. Which directory did you put your masternode.conf in? Check the filename - should be all lowercase. If that doesn't help - run the "strace -f 8bitd" and look for the line where it opens "masternode.conf" (search "masternode.conf" in the output) - see what the function returns there. I would be happy to help, but it's hard to do without actual access to your server.
full member
Activity: 219
Merit: 100
What is the name of the masternode.conf file?

I tried creating a masternode.conf file, but when I go the console and type in: masternode list-conf it comes back empty.

Trying to run masternodes on vps with a controller wallet that has all the coins.  Anyone doing this?

As 8-bit-party said - check the last pages of the thread Smiley

Here is the patch I posted few weeks back: https://bitcointalksearch.org/topic/m.20238850

It is specifically made to fix masternode.conf support.


Thanks for that... I tried what you said...

Copied text into file
Put file in 8bit dir
ran command: patch src/bitcoind.cpp 8bit.patch

Got this error message:

$patch src/bitcoind.cpp 8bit.patch
patching file src/bitcoind.cpp
patch: **** malformed patch at line 6:  #include "rpcserver.h"


Any idea what I did wrong?

Tried to just manually update the code... all seemed to compile ok, but when I load 8bit-qt and go to debug console... masternode list-conf, still comes back empty and masternode start-many doesn't start any nodes (have checked, all conf files should be correct).
full member
Activity: 219
Merit: 100
What is the name of the masternode.conf file?

I tried creating a masternode.conf file, but when I go the console and type in: masternode list-conf it comes back empty.

Trying to run masternodes on vps with a controller wallet that has all the coins.  Anyone doing this?

As 8-bit-party said - check the last pages of the thread Smiley

Here is the patch I posted few weeks back: https://bitcointalksearch.org/topic/m.20238850

It is specifically made to fix masternode.conf support.


Thanks for that... I tried what you said...

Copied text into file
Put file in 8bit dir
ran command: patch src/bitcoind.cpp 8bit.patch

Got this error message:

$patch src/bitcoind.cpp 8bit.patch
patching file src/bitcoind.cpp
patch: **** malformed patch at line 6:  #include "rpcserver.h"


Any idea what I did wrong?
sr. member
Activity: 425
Merit: 250
I remember that masternode.conf support was incomplete and some small addons were required to set it up. Check last pages of the thread, I guess I saw posts about it recently.
 

Any progress being made on enabling the cryptopia wallet?
I'm also tired of holding my coins on cryptopia, I would like to withdraw my coins from there and setup my masternodes 😔
full member
Activity: 144
Merit: 100
I remember that masternode.conf support was incomplete and some small addons were required to set it up. Check last pages of the thread, I guess I saw posts about it recently.
 

Any progress being made on enabling the cryptopia wallet?
legendary
Activity: 2576
Merit: 1073
What is the name of the masternode.conf file?

I tried creating a masternode.conf file, but when I go the console and type in: masternode list-conf it comes back empty.

Trying to run masternodes on vps with a controller wallet that has all the coins.  Anyone doing this?

As 8-bit-party said - check the last pages of the thread Smiley

Here is the patch I posted few weeks back: https://bitcointalksearch.org/topic/m.20238850

It is specifically made to fix masternode.conf support.
legendary
Activity: 1036
Merit: 1000
8b 16b DEMOSCENE FTW
I remember that masternode.conf support was incomplete and some small addons were required to set it up. Check last pages of the thread, I guess I saw posts about it recently.
 
full member
Activity: 219
Merit: 100
What is the name of the masternode.conf file?

I tried creating a masternode.conf file, but when I go the console and type in: masternode list-conf it comes back empty.

Trying to run masternodes on vps with a controller wallet that has all the coins.  Anyone doing this?

@8-Bit-Party... has this capability been removed? If so, can it be put back in? Thanks.
Pages:
Jump to: