http://www.coindesk.com/bitcoin-node-numbers-fall-after-spam-transaction-attack/
mi chiedo come mai me ne accorgo solo io... qui un full node non lo ha nessuno ?
Io ne ho 3 Fullm Node
Cmq, prova a fare l'update con 0.11.1
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
#!/bin/bash
# script orrendo per riavvirare bitcoin-qt in caso di errore NST8ios
# Glo 13/10/2015
start_bitcoin()
{
echo "avvio bitcoin-qt"
export DISPLAY=:0
/usr/bin/bitcoin-qt > bitcoin.log 2>&1 &
}
stop_bitcoin()
{
# provo a terminarlo finche' non c'e' piu' tra i processi
while true
do
bitcoin-cli stop
if ! ps -ax | grep -v grep | grep -q "bitcoin-qt"
then
break
fi
echo "bitcoin gira ancora "
sleep 1
done
}
cnt_bitcoin()
{
while true
do
if bitcoin-cli getinfo | grep -q "NSt8ios_base7failureE"
then
echo "restart NSt8ios_base7failureE"
date
stop_bitcoin
start_bitcoin
else
sleep 10
fi
done
}
# se per caso c'era un bitcoin-qt attivo
stop_bitcoin
# avvia una sessione bitcoin qt
start_bitcoin
# controlla se bitcoin-qt entra in errore, e se si lo fa ripartire
cnt_bitcoin