• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

drk missing/not showing..

karmicdark

New member
Hi, I just created two ec2 masternodes with hotwallets and sent 1000 drk to each. one of them shows the 1000 drk and the other does not:
Code:
darkcoind getinfo
{
    "version" : 101105,
    "protocolversion" : 70018,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 0,
    "timeoffset" : 0,
    "connections" : 0,
    "proxy" : "",
    "difficulty" : 0.00024414,
    "testnet" : false,
    "keypoololdest" : 1404667585,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}

however, this address DOES show the 1000 drk when I search for it on chainz.. also in the getinfo blocks, timeoffsets, and connections are all zero, doesn't seem right. Does anyone know what the problem could be here? Thanks!
 
you might have created one or more addresses in your hot wallet and sent the funds to one of them...
Try to list ALL the address in your wallet
getaddressesbyaccount 0

check what is the last block received on your wallet. Maybe its not updated and not showing the transfer yet, but when you search the chain you see it.

Dont think you wallet is synchronized from the info you posted Zero block.
 
Last edited by a moderator:
There's only one address. So how do I convince the wallet to synchronize?
I tried to restart darkcoind with -reindex and it didn't work, this is the output from debug.log:
Code:
2014-07-06 20:29:23 ProcessBlock: ACCEPTED
2014-07-06 20:29:25 Flushing wallet.dat
2014-07-06 20:29:25 Flushed wallet.dat 9ms
2014-07-06 20:29:29 Loaded 1 blocks from external file in 5546ms
2014-07-06 20:29:29 Unable to open file /home/ubuntu/.darkcoin/blocks/blk00001.dat
2014-07-06 20:29:29 Reindexing finished
2014-07-06 20:29:29 trying connection 162.252.83.46:9999 lastseen=3.7days
2014-07-06 20:29:29 connected 162.252.83.46:9999
2014-07-06 20:29:29 send version message: version 70018, blocks=0, us=54.183.9.58:9999,
them=162.252.83.46:9999, peer=1
2014-07-06 20:29:29 socket recv error 104
2014-07-06 20:29:29 disconnecting node 162.252.83.46:9999
2014-07-06 20:29:30 ThreadRPCServer method=getinfo
2014-07-06 20:29:30 keypool reserve 1
2014-07-06 20:29:30 keypool return 1
2014-07-06 20:29:36 ThreadRPCServer method=getinfo
2014-07-06 20:29:36 keypool reserve 1
2014-07-06 20:29:36 keypool return 1
2014-07-06 20:30:49 trying connection 162.252.83.46:9999 lastseen=3.7days
2014-07-06 20:30:49 connected 162.252.83.46:9999
2014-07-06 20:30:49 send version message: version 70018, blocks=0, us=54.183.9.58:9999,
them=162.252.83.46:9999, peer=2
2014-07-06 20:30:49 socket recv error 104
2014-07-06 20:30:49 disconnecting node 162.252.83.46:9999
 
Last edited by a moderator:
still nothing..

Code:
rpcuser=rpcusermanbearpig
rpcpassword=<password>
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
externalip=54.92.7.82
 
Not sure what you want to know about the firewall, it's the ubuntu EC2 instance in chaeplin's guide, but with a hot wallet.
Code:
:~# iptables --list
Chain INPUT (policy ACCEPT)
target     prot opt source               destination        
REJECT     tcp  --  anywhere             anywhere             tcp dpt:9998 reject-with tcp-reset
REJECT     tcp  --  anywhere             anywhere             tcp dpt:9999 flags:FIN,SYN,RST,ACK/SYN #conn src/24 > 8 reject-with tcp-reset
REJECT     tcp  --  anywhere             anywhere             tcp dpt:9999 flags:FIN,SYN,RST,ACK/SYN #conn src/32 > 2 reject-with tcp-reset
ACCEPT     tcp  --  anywhere             anywhere             ctstate NEW tcp dpt:9999
ACCEPT     tcp  --  anywhere             anywhere           

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination        

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination        
ACCEPT     tcp  --  anywhere             anywhere             tcp spt:9999 ctstate NEW
ACCEPT     tcp  --  anywhere             anywhere             tcp spt:9999
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:9999
ACCEPT     all  --  anywhere             anywhere
 
still nothing..

Code:
rpcuser=rpcusermanbearpig
rpcpassword=<password>
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
externalip=54.92.7.82


Try adding:

Code:
addnode=23.23.186.131
addnode=50.16.206.102
addnode=50.19.116.123
addnode=98.165.130.67
addnode=54.242.50.205
addnode=50.17.98.53
addnode=54.225.43.37
 
Back
Top