Browse Source
Merge pull request #401 from NastiaS/polishBranch
ripple and ethereum import account setting default archiving to false
master
Meriadec Pillet
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
4 deletions
-
src/bridge/EthereumJSBridge.js
-
src/bridge/RippleJSBridge.js
|
|
@ -131,7 +131,7 @@ const EthereumBridge: WalletBridge<Transaction> = { |
|
|
|
name: 'New Account', |
|
|
|
balance, |
|
|
|
blockHeight: currentBlock.height, |
|
|
|
archived: true, |
|
|
|
archived: false, |
|
|
|
index, |
|
|
|
currency, |
|
|
|
operations: [], |
|
|
@ -156,7 +156,7 @@ const EthereumBridge: WalletBridge<Transaction> = { |
|
|
|
name: address.slice(32), |
|
|
|
balance, |
|
|
|
blockHeight: currentBlock.height, |
|
|
|
archived: true, |
|
|
|
archived: false, |
|
|
|
index, |
|
|
|
currency, |
|
|
|
operations: [], |
|
|
|
|
|
@ -223,7 +223,7 @@ const RippleJSBridge: WalletBridge<Transaction> = { |
|
|
|
operations: [], |
|
|
|
pendingOperations: [], |
|
|
|
unit: currency.units[0], |
|
|
|
archived: true, |
|
|
|
archived: false, |
|
|
|
lastSyncDate: new Date(), |
|
|
|
}) |
|
|
|
break |
|
|
@ -254,7 +254,7 @@ const RippleJSBridge: WalletBridge<Transaction> = { |
|
|
|
operations: [], |
|
|
|
pendingOperations: [], |
|
|
|
unit: currency.units[0], |
|
|
|
archived: true, |
|
|
|
archived: false, |
|
|
|
lastSyncDate: new Date(), |
|
|
|
} |
|
|
|
account.operations = transactions.map(txToOperation(account)) |
|
|
|