Skip to content

Commit

Permalink
Fixing MYSQL Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tloriato committed Apr 6, 2019
1 parent 9a2d90e commit d19467d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mce/DataStore.py
Original file line number Diff line number Diff line change
Expand Up @@ -2204,7 +2204,7 @@ def prefix_to_assetid_or_new(store, prefix, chain):

def update_asset_address_balance(store, asset_id, pubkey_id, quantity, tx_hash):
store.sql("""
INSERT OR IGNORE INTO asset_address_balance (asset_id, pubkey_id, balance)
INSERT IGNORE INTO asset_address_balance (asset_id, pubkey_id, balance)
VALUES (?,?,0)""",
(asset_id, pubkey_id))
store.sql("""
Expand Down

0 comments on commit d19467d

Please sign in to comment.