I already updated Abe yesterday. Will give it a try though.
Edit: No dice, seems
this commit might have something to do with it since it errors on this column.
indeed. I removed the call to new_id() because it was creating a new id.
however, the request might not work on all databases. (I use postgresql)
There is no last_value on MySQL as far as I am aware. Would it be possible to replace:
current_id = self.safe_sql("""SELECT last_value FROM tx_seq""")
current_id = current_id[0][0]
With
current_id = self.safe_sql("""SELECT * FROM tx_seq ORDER BY id DESC LIMIT 1""")
current_id = current_id[0][0]
Since my server crashes I can't be sure what current_id is returning on Postgre.