Hi! I have an overflow error just like the one that was posted before,
Traceback (most recent call last):
File "Mce/DataStore.py", line 2861, in catch_up
if not store.catch_up_rpc(dircfg):
File "Mce/DataStore.py", line 3093, in catch_up_rpc
store.import_block(block, chain = chain)
File "Mce/DataStore.py", line 1193, in import_block
tx['tx_id'] = store.import_and_commit_tx(tx, pos == 0, chain)
File "Mce/DataStore.py", line 2183, in import_and_commit_tx
tx_id = store.import_tx(tx, is_coinbase, chain)
File "Mce/DataStore.py", line 2164, in import_tx
(quantity, pubkey_id, prefix))
File "Mce/DataStore.py", line 262, in sql
store._sql.sql(stmt, params)
File "Mce/SqlAbstraction.py", line 426, in sql
sql._execute(cached, params)
File "Mce/SqlAbstraction.py", line 407, in _execute
sql.cursor().execute(stmt, params)
OverflowError: Python int too large to convert to SQLite INTEGER
the difference in this case os that I didn't issue a big amount of coins, just 1000. So where this big numbers are coming from? and how can I modify the code so they get accepted. Thanks