Kittehcoin.info - has been back online now for a couple of weeks now and all issues that caused the site to fall have been resolved. A more structured design is going to be put online in beta form for the community's input.
Kittehcoin.info hangs while loading... (backround and gallery not visible) When I press stop, all works good. Some script magic?
kittehcoinblockexplorer.com - is back online and functioning without error. It is currently using a heavily modded version of bitcoin-abe that is in beta mode so if you result in any bugs please let me know so they may be addressed right away.
Excellent!
Domain name is changed to IP - it's not good. Do you use redirect? Configure DNS instead it! It's also a good idea to change the port to a standard.
So, link to blockexplorer on coinmarketcap (
http://kittehcoinblockexplorer.com/chain/Kittehcoin) now don't works.
You can also add link to alternative
block explorerKittehtrest - is a new concept of online wallet that will allow for users to store there kittehcoins in and earn interest. This is just about ready to hit beta development stage and all coins that are used dispensed as interest will be coins mined by the service.
Good idea! But not clear for me, how Kittehtrest will get profit?
Mining is slow now a days on the network but activity is still up to date, we have noticed that there have been misbehaving nodes on the network that are causing invalid block counts and wallet syncing issues. We are looking for ways to eliminate this and are interested in any feedback you may have.
Yeah, my node eats over 500 MB of memory, may be it happens due to illegal nodes
We can use protocol version (may be subver) for disconnect bad peers
Valid peers must have:
"version" : 70002,
"subver" : "/Satoshi:0.8.6.2/",
Examples of invalid peers:
"version" : 60003,
"subver" : "/RabbitCoin:1.1.0.1/",
...
"version" : 70001,
"subver" : "/Shibetoshi:1.5.0/",
...
"version" : 70003,
"subver" : "/Shibetoshi:1.8.0/",
...
Possible solution:
version.h#L34-static const int MIN_PEER_PROTO_VERSION = 60003
+static const int MIN_PEER_PROTO_VERSION = 70002;
+static const int BAN_1_PROTO_VERSION = 70003;
main.cpp#L3457-if (pfrom->nVersion < MIN_PEER_PROTO_VERSION)
+if (pfrom->nVersion < MIN_PEER_PROTO_VERSION ||
+ pfrom->nVersion == BAN_1_PROTO_VERSION)
I'll try do it in my own node.
UPDSo, I have 13 good peers for now:
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "46.254.14.245:49105",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "158.69.90.107:22566",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "104.232.37.171:57651",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "85.24.169.215:43626",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "192.99.8.126:48263",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "204.11.237.233:54891",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "192.99.13.67:45229",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "117.52.84.15:34002",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "193.227.134.111:38560",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "37.78.86.28:59823",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "98.115.147.74:43399",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "50.162.235.186:37375",
"version" : 70002, "subver" : "/Satoshi:0.8.6.2/", "startingheight" : 881242, "addr" : "63.247.147.166:22566",
All invalid peers is disconnected successfuly