Bitcoin Forum

Other => Beginners & Help => Topic started by: bassguitarman on July 13, 2014, 08:59:13 PM



Title: SETTING UP ABE -- OverflowError: Python int too large to convert to C long
Post by: bassguitarman on July 13, 2014, 08:59:13 PM
I am setting up abe for my coin, which switched to merged mining at block 100k, and I'm getting an error.

Code:
Exception at 11834609485958195742
Failed to catch up {'blkfile_number': 100000, 'dirname': '/root/.tacocoin', 'chain_id': 1, 'id': Decimal('1'), 'blkfile_offset': 108935}
Traceback (most recent call last):
  File "Abe/DataStore.py", line 2404, in catch_up
    store.catch_up_dir(dircfg)
  File "Abe/DataStore.py", line 2457, in catch_up_dir
    store.import_blkdat(dircfg, ds, filename[0])
  File "Abe/DataStore.py", line 2578, in import_blkdat
    b = store.parse_block(ds, chain_id, magic, length)
  File "Abe/DataStore.py", line 2612, in parse_block
    d['transactions'].append(deserialize.parse_Transaction(ds))
  File "Abe/deserialize.py", line 91, in parse_Transaction
    d['txOut'].append(parse_TxOut(vds))
  File "Abe/deserialize.py", line 65, in parse_TxOut
    d['value'] = vds.read_int64()
  File "Abe/BCDataStream.py", line 72, in read_int64
    def read_int64(self): return self._read_num('<q')
  File "Abe/BCDataStream.py", line 110, in _read_num
    (i,) = struct.unpack_from(format, self.input, self.read_cursor)
OverflowError: Python int too large to convert to C long


Can anyone help?


Title: Re: SETTING UP ABE -- OverflowError: Python int too large to convert to C long
Post by: Sydboy on July 14, 2014, 09:13:01 AM
i am sending you some links now which might be of help. i had a similar issue with abe 0.8 a little while ago.