Maybe I am wrong, but the chain is not moving exactly because no blocks are accepted.
Ya it's because new blocks aren't being generated right now which is making me think that it's a connection problem possibly with that hardnoded node in the wallet being closed now and giving the debug.log a socket closed status for that IP address but I'm not 100% sure
Cheers
IMHO it is line 1162 in
main.cpp that rejects new found (POW) blocks. Question is which of the two conditions triggers the error/reject.
Not sure about that strange node, but AFAICS the problem occures before the block even could be broadcasted to other nodes.
When you type getblockbynumber "blocknumber" into debug console I get this :
17:43:18

getblockbynumber 20986
17:43:18

{
"hash" : "00000001253ce61440d7c5154ed17d6c9583fba4cbc228529d2c8222147ce15c",
"confirmations" : 2,
"size" : 183,
"height" : 20986,
"version" : 6,
"merkleroot" : "070f5b851bf7d22bc8e57c7865c99df880dd6ed736bcd0b6ac4ff2b210b85bcc",
"mint" : 1.00000000,
"time" : 1435719514,
"nonce" : 2126708960,
"bits" : "1d01e696",
"difficulty" : 0.52610664,
"blocktrust" : "1",
"chaintrust" : "aa5fd",
"previousblockhash" : "0000000050496a633f2c995bced0378164803ca8a4b24259528486bd85c5863f",
"nextblockhash" : "c7f5fc288f4132c3bd95f84c9e5546da3fb2ccaf83964a18beded1f4a1142983",
"flags" : "proof-of-work",
"proofhash" : "00000001253ce61440d7c5154ed17d6c9583fba4cbc228529d2c8222147ce15c",
"entropybit" : 0,
"modifier" : "31f3db4c56d8a15e",
"modifierchecksum" : "33453c86",
"tx" : [
"070f5b851bf7d22bc8e57c7865c99df880dd6ed736bcd0b6ac4ff2b210b85bcc"
]
}
17:43:26

getblockbynumber 20987
17:43:26

{
"hash" : "c7f5fc288f4132c3bd95f84c9e5546da3fb2ccaf83964a18beded1f4a1142983",
"confirmations" : 1,
"size" : 454,
"height" : 20987,
"version" : 6,
"merkleroot" : "85dd7520f06745ef0a12e43dce2a5d7dec39d1caa65f81a360e9cb93d2dee838",
"mint" : 10.41308300,
"time" : 1435719537,
"nonce" : 0,
"bits" : "1d1fffff",
"difficulty" : 0.03124954,
"blocktrust" : "1",
"chaintrust" : "aa5fe",
"previousblockhash" : "00000001253ce61440d7c5154ed17d6c9583fba4cbc228529d2c8222147ce15c",
"flags" : "proof-of-stake",
"proofhash" : "000074d23e75668dcbe16bc52c7153601b26a6343483b3ecdc323b8d25b9f2ab",
"entropybit" : 1,
"modifier" : "31f3db4c56d8a15e",
"modifierchecksum" : "a9dca7ef",
"tx" : [
"cf602b0d13f1e64aa3c15b493828a0a53a7e18f35c84b8ad2d1db104646b9909",
"424e7546c12a5c9b780ff13f562cc78502f63c03e71984ce7f5f7ef21a4e6a8a"
],
"signature" : "30450221009ef13244e4335169eb9a79394f1100bebdbe61b571f08c321a055c0835030ccc02203
83fe80465407630c02ca28f346522c2ae4aef649d3f6403b059aae0bcc81f32"
}
Notice that at block 20987 it doesn't have the next block hash showing which is the only reason why I was thinking that the hardnoded node was socket closed meaning that any new blocks wouldn't be generated or some shiat like that lol But again I don't know and would leave that to the pro's but why wouldn't it generate the next block hash?