I get a lot of TX times of 1970-01-01 01:00:00 and dont understand how / why ?
Example code
import blocksci
parser_data_directory = '/home/bitcoin/blocksci'
chain = blocksci.Blockchain(parser_data_directory)
adr=chain.address_from_string('19YGJq2n2e8HrFyUQtxDaX8CdWMuA5nR8Q')
print(adr.outs.all[0].tx.hash)
print(adr.outs.all[0].tx.block_time)
Yields:
6bc6aa12b88c9f89e26a96ac9a560eb46faf5526e7bb5884e73ff4813b81b9c0
1970-01-01 01:00:00
My assumption is, any data must come from a block and any block must have a timestamp (which is not 0 and later than january 2009).
Thanks for your support.
I get a lot of TX times of 1970-01-01 01:00:00 and dont understand how / why ?
Example code
import blocksci
parser_data_directory = '/home/bitcoin/blocksci'
chain = blocksci.Blockchain(parser_data_directory)
adr=chain.address_from_string('19YGJq2n2e8HrFyUQtxDaX8CdWMuA5nR8Q')
print(adr.outs.all[0].tx.hash)
print(adr.outs.all[0].tx.block_time)
Yields:
6bc6aa12b88c9f89e26a96ac9a560eb46faf5526e7bb5884e73ff4813b81b9c0
1970-01-01 01:00:00
My assumption is, any data must come from a block and any block must have a timestamp (which is not 0 and later than january 2009).
Thanks for your support.