What are the significance of these elements

+2 votes

Hi 

In listwallettransactions what are the significance of these elements :

 "confirmations" : 11,                     -- is it the confirmation time in seconds?
        "blocktime" : 1498480594,  -- what does blocktime indicates?
        "valid" : true,                    -- does this mean it is mined?
        "time" : 1498480592,  -- how do we interpret this?
        "timereceived" : 1498480592  -- how do we interpret this?

 

Thanks

 

 

asked Jun 26, 2017 by anonymous

1 Answer

+2 votes

Below is an explanation of these fields:

  • confirmations – how many blocks have been added to the chain since this transaction.
  • blocktime – the Unix timestamp embedded in the header of the block in which the transaction was confirmed.
  • valid – this wallet transaction does not conflict with any transaction in the blockchain (an invalid transaction cannot be confirmed).
  • time – the Unix timestamp of when the transaction was added to this node's wallet.
  • timereceived – the Unix timestamp of when the transaction was first seen by this node.
answered Jun 26, 2017 by MultiChain 1 flag
...