Hmm is the mergedmine proxy running? Thats what calls getauxblock..
You using latest source? Try to delete your wallet too if you dont have coins in it...
Is minimg happening when it crashes? Try to just get the mode up stable and synced before tirning on the proxy for the pool.
Did you do a clean build? Delete obj files manually?
Sometimes if its not closed properly it corrupts wallet amd database and crashes when reopened.. thats not a devcoin issue.
Can I vpn in or ssh to see?
Yeah it's really weird. I did a full directory delete and restarted it, it loaded the blocks fine, but when it gets to the top end it just keeps messing about.
here's my devcoin.conf:
daemon=1
rpcuser=
rpcpassword=
port=52333
rpcport=52332
discover=1
listen=1
addnode=198.154.60.183
the discover/listen I tried to no avail (didn't have them before). Here's my startup script, which is a generic copy of all my other daemons:
#!/bin/sh
### BEGIN INIT INFO
# Provides: devcoind
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start Devcoin Daemon
# Description: Run Devcoin Daemon
### END INIT INFO
TITLE=Devcoin
NAME=devcoin
EXEC=devcoind
EXECPATH=/usr/local/bin/$EXEC
BASE=/home/amit/.${NAME}/
CONF=${BASE}${NAME}.conf
CHUID=amit:amit
# Carry out specific functions when asked to by the system
case "$1" in
start)
$EXECPATH -daemon -conf=$CONF -datadir=$BASE
;;
stop)
$EXECPATH stop
;;
*)
echo "Usage: /etc/init.d/$EXEC {start|stop}"
exit 1
;;
esac
exit 0
The problem is with the devcoind daemon, or at least between the daemon and the server. I'm not sure if I've somehow inadvertently blocked access to the network for the devcoin daemon or what, but the other daemons don't seem to be having any issues so I've done something specifically to this.
The P2Pool is running fine with the other merged mine coins (at least they seem to be, but we haven't found any blocks yet).
Send me your rsa_pub and I'll give you access to ssh.