diff --git a/src/bridge/EthereumJSBridge.js b/src/bridge/EthereumJSBridge.js index 38a2142e..cbb56d11 100644 --- a/src/bridge/EthereumJSBridge.js +++ b/src/bridge/EthereumJSBridge.js @@ -59,7 +59,7 @@ const txToOps = (account: Account) => (tx: Tx): Operation[] => { accountId: account.id, senders: [tx.from], recipients: [tx.to], - date: new Date(tx.received_at), + date: new Date(new Date(tx.received_at) + 1), // hack: make the IN appear after the OUT in history. }) } return ops