Browse Source
ETH self transaction: Receive to appear after Send
master
Gaëtan Renaudeau
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|