edge-core-js
Advanced tools
Comparing version 0.9.11 to 0.9.12
# edge-core-js | ||
## 0.9.12 | ||
* Fix QBO export error. | ||
* Fix minor Flow bug. | ||
## 0.9.11 | ||
@@ -4,0 +9,0 @@ |
{ | ||
"name": "edge-core-js", | ||
"version": "0.9.11", | ||
"version": "0.9.12", | ||
"description": "Edge account & wallet management library", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
// @flow | ||
import type { | ||
EdgeCurrencyInfo, | ||
EdgeCurrencyPlugin, | ||
@@ -18,5 +19,5 @@ EdgeCurrencyTools | ||
get currencyInfo () { | ||
get currencyInfo (): EdgeCurrencyInfo { | ||
return this._plugin.currencyInfo | ||
} | ||
} |
@@ -206,3 +206,5 @@ // @flow | ||
const currencyCode = | ||
opts && opts.currencyCode ? opts.currencyCode : this.currencyCode | ||
opts && opts.currencyCode | ||
? opts.currencyCode | ||
: this.input.props.selfState.currencyInfo.currencyCode | ||
const denom = opts && opts.denomination ? opts.denomination : null | ||
@@ -226,3 +228,5 @@ const qbo: string = exportTransactionsToQBOInner( | ||
const currencyCode = | ||
opts && opts.currencyCode ? opts.currencyCode : this.currencyCode | ||
opts && opts.currencyCode | ||
? opts.currencyCode | ||
: this.input.props.selfState.currencyInfo.currencyCode | ||
const denom = opts && opts.denomination ? opts.denomination : null | ||
@@ -229,0 +233,0 @@ const csv: string = await exportTransactionsToCSVInner( |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
5147450
57649