Update create current unix time

update method to create current unix time to be windows compatible

fix issue #640
This commit is contained in:
Michael Wozniak 2014-03-31 21:52:31 -04:00
parent 607e79cc43
commit b099930174
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import decimal
import httplib
import json
import threading
import time
import re
from decimal import Decimal
from electrum.plugins import BasePlugin
@ -421,7 +422,7 @@ class Plugin(BasePlugin):
newtx = self.wallet.get_tx_history()
v = newtx[[x[0] for x in newtx].index(str(item.data(0, Qt.UserRole).toPyObject()))][3]
tx_info = {'timestamp':int(datetime.datetime.now().strftime("%s")), 'value': v }
tx_info = {'timestamp':int(time.time()), 'value': v }
pass
tx_time = int(tx_info['timestamp'])
if cur_exchange == "CoinDesk":