Does anybody know what to do when a transaction is seen on the server that submitted it, but it is not seen anywhere else?
DOGE txid eb9c4d8a9d11dc02d36092aea8a9ecc0a49d893b498e651960c320a8c8908e38
it is not visible anywhere, except on the server that issued the actual sendrawtransaction.
Because of this mismatch, the three servers will not agree on the state of the multisig acct and withdrawals will stop. If I try to submit it again, I get an error -22, which means the transaction has already been submitted.
All servers are seeing all the transactions before and after this one. The rawtransaction itself seems OK, but it never gets any confirmations and gettransaction fails to see it, even on the machine that issued it?!
This was a sweep transaction that goes from user deposit address into the multisig.
I wonder if this could be due to lack of TXFEE? I am BTC's TXFEE of .0001, but DOGE's is 1.0. However, it usually doesnt even need any TXFEE. I do get a warning from DOGE-QT sometimes saying that I need to pay a fee. Does anybody know how I am supposed to determine if fee is needed?
James
# gettxout 0
{
"bestblock" : "d5bc84da18da2b89c79124732bf33c3942854bb041f8208577645bc51a09766d",
"confirmations" : 0,
"value" : 0.99990000,
"scriptPubKey" : {
"asm" : "OP_DUP OP_HASH160 14b24a5b6f8c8df0f7c9b519d362618ca211e609 OP_EQUALVERIFY OP_CHECKSIG",
"hex" : "76a91414b24a5b6f8c8df0f7c9b519d362618ca211e60988ac",
"reqSigs" : 1,
"type" : "pubkeyhash",
"addresses" : [
"D72Xdw5cVyuX9JLivLxG3V9awpvj7WvsMi"
]
},
"version" : 1,
"coinbase" : false
}
# gettxout 1
{
"bestblock" : "d5bc84da18da2b89c79124732bf33c3942854bb041f8208577645bc51a09766d",
"confirmations" : 0,
"value" : 10.99990000,
"scriptPubKey" : {
"asm" : "OP_HASH160 052e9326e4b92d2884a4f325fb1fefbccd5bd1eb OP_EQUAL",
"hex" : "a914052e9326e4b92d2884a4f325fb1fefbccd5bd1eb87",
"reqSigs" : 1,
"type" : "scripthash",
"addresses" : [
"9rufqRXAekAx4gnGuKf5SL8YzViMfryLMY"
]
},
"version" : 1,
"coinbase" : false
}
# rawtransaction
{
"txid" : "eb9c4d8a9d11dc02d36092aea8a9ecc0a49d893b498e651960c320a8c8908e38",
"version" : 1,
"locktime" : 0,
"vin" : [
{
"txid" : "766137747b8280ad20af5cae13b37899c544b44cc35cc12bdd7e3b4e748444f4",
"vout" : 0,
"scriptSig" : {
"asm" : "0 304402205da1d9e78c75edbb4dcea3ed4b4b0ab0aade7f3795eea80c68b668feb11cc3cc02200ab7c616623ecca17845b512fc13c75be78988f2f87aaebe6ce0f1986c15815b01 304502203391a4564cfed0f13cc97deb090fd0aa4102e92f47e5fd6e7fbd6bb8d629abcf02210083d94ea934f26a0dd19fd7855ef455e1d89faa5f6fe67966f96c04cd0afe02b301 52210287300d3f7447c84c0ec6052440285d99f2211aba6eb17b9d6baa9b62cd16f8d52102b6b6aa9320c60d47b795748ae5291e94f56267411096f8ea42d6f7202ba0819c2102daa52056d79777afa25001b957d9e4cc2eba1e3639bd390681db149f1cd174fb53ae",
"hex" : "0047304402205da1d9e78c75edbb4dcea3ed4b4b0ab0aade7f3795eea80c68b668feb11cc3cc02200ab7c616623ecca17845b512fc13c75be78988f2f87aaebe6ce0f1986c15815b0148304502203391a4564cfed0f13cc97deb090fd0aa4102e92f47e5fd6e7fbd6bb8d629abcf02210083d94ea934f26a0dd19fd7855ef455e1d89faa5f6fe67966f96c04cd0afe02b3014c6952210287300d3f7447c84c0ec6052440285d99f2211aba6eb17b9d6baa9b62cd16f8d52102b6b6aa9320c60d47b795748ae5291e94f56267411096f8ea42d6f7202ba0819c2102daa52056d79777afa25001b957d9e4cc2eba1e3639bd390681db149f1cd174fb53ae"
},
"sequence" : 4294967295
}
],
"vout" : [
{
"value" : 0.99990000,
"n" : 0,
"scriptPubKey" : {
"asm" : "OP_DUP OP_HASH160 14b24a5b6f8c8df0f7c9b519d362618ca211e609 OP_EQUALVERIFY OP_CHECKSIG",
"hex" : "76a91414b24a5b6f8c8df0f7c9b519d362618ca211e60988ac",
"reqSigs" : 1,
"type" : "pubkeyhash",
"addresses" : [
"D72Xdw5cVyuX9JLivLxG3V9awpvj7WvsMi"
]
}
},
{
"value" : 10.99990000,
"n" : 1,
"scriptPubKey" : {
"asm" : "OP_HASH160 052e9326e4b92d2884a4f325fb1fefbccd5bd1eb OP_EQUAL",
"hex" : "a914052e9326e4b92d2884a4f325fb1fefbccd5bd1eb87",
"reqSigs" : 1,
"type" : "scripthash",
"addresses" : [
"9rufqRXAekAx4gnGuKf5SL8YzViMfryLMY"
]
}
}
]
}