Pages:
Author

Topic: Altcoin: transactions stuck in pending state - page 2. (Read 284 times)

full member
Activity: 615
Merit: 154
CEO of Metaisland.gg and W.O.K Corp
Replying to my own question.

in transactionrecord.cpp in TransactionRecord::updateStatus

I can see that all my transactions are passing through this code and because the status.depth == 0 they are always flagged unconfirmed.
I mined thousands of blocks so why the depth is still at 0?

Code:
if (status.depth < 0)
        {
            status.status = TransactionStatus::Conflicted;
        }
        else if (status.depth == 0)
        {
            status.status = TransactionStatus::Unconfirmed;
            if (wtx.is_abandoned)
                status.status = TransactionStatus::Abandoned;
        }
        else if (status.depth < RecommendedNumConfirmations)
        {
            status.status = TransactionStatus::Confirming;
        }
        else
        {
            status.status = TransactionStatus::Confirmed;
        }

full member
Activity: 615
Merit: 154
CEO of Metaisland.gg and W.O.K Corp
I have a problem with the transactions of my altcoin.
When I send a transaction in to another wallet (full node) the transaction is working correclty but end up in Pending forever.
I have tried to change the fees and rebroadcast, and I get the same result.

Periodically, the wallet rebroadcast the transaction to the network like this:

Code:
2019-03-17T18:40:42Z [default wallet] Relaying wtx 52b4b7dcb2f2e70fb18a6bf5403e8cf9fb0e5c9f2998575f308cf36829b08ec4
2019-03-17T18:40:42Z [default wallet] Relaying wtx d49a010079caa2471cdd07cc26396b6dd93ac9c05c4e2058768aeac09b03f5fd
2019-03-17T18:40:42Z [default wallet] Relaying wtx a952070a5d43d8d73fcf0608b858c673a7a94d9997ef246267267f23f269e451
2019-03-17T18:40:42Z [default wallet] ResendWalletTransactions: rebroadcast 3 unconfirmed transactions


Here is an example of transaction

Code:
Status: 0/unconfirmed, in memory pool
Date: 3/17/19 01:07
To: k7NFieCa6MBeTumzqnPMS9x9wocEhYBszj
Debit: -1287.86680000 KYF
Transaction fee: -0.10000000 KYF
Net amount: -1287.96680000 KYF
Transaction ID: a952070a5d43d8d73fcf0608b858c673a7a94d9997ef246267267f23f269e451
Transaction total size: 24699 bytes
Transaction virtual size: 13143 bytes
Output index: 1


Any clue about what could be the issue in the configuration of the coin? Huh

Thanks
Pages:
Jump to: