Author

Topic: solved hundreds of blocks, but only 10 transactions appear? (Read 546 times)

full member
Activity: 140
Merit: 100
it's tendentious,
use the mining section theres better advice
newbie
Activity: 10
Merit: 0
newbie
Activity: 10
Merit: 0
Quote
Are you sure you are not generating invalid shares?

the shares are valid and the balance shows up in 'getbalance'.   It seems 'listtransactions' has a default limit of 10, which can be overruled with 'count=x' but it is erroring out for me
newbie
Activity: 10
Merit: 0
Hello,

I made a slightly modified litecoin clone (altcoin) for my own fun and experimentation.   I've been mining several hours now, and I can see hundreds of blocks have been solved (I'm the only miner).

However, only 10 transactions appear in 'mycoind' listtransactions.


for example :

Code:
grep 'proof-of-work found' ~/.mycoin/debug.log | wc -l
269

^ I've solved 269 blocks on this node.   However, only 10 transactions appear :


Code:
# mycoind listtransactions | grep amount; mycoind listtransactions | grep amount | wc -l
        "amount" : 50.00000000,
        "amount" : 50.00000000,
        "amount" : 50.00000000,
        "amount" : 50.00000000,
        "amount" : 50.00000000,
        "amount" : 50.00000000,
        "amount" : 50.00000000,
        "amount" : 50.00000000,
        "amount" : 50.00000000,
        "amount" : 50.00000000,
10


is there something I'm supposed to do to see more than 10 transactions in the "listtransactions" command ?    All the blocks that show up are till "immature" - I expect eventually all 269+ blocks will mature and show up in "getbalance"  but I wish I knew how to make them all appear in the transaction list


I tried adding the "count="  to the command but it fails :

Code:
# mycoind listaccounts
{
    "" : 13650.00000000
}

Code:
# mycoind listtransactions "" count=100
error: Error parsing JSON:count=100
Jump to: