-
Notifications
You must be signed in to change notification settings - Fork 791
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
polishing refinements to dex.ag #2323
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #2323 +/- ##
===========================================
- Coverage 12.90% 12.90% -0.01%
===========================================
Files 483 483
Lines 20096 20105 +9
Branches 3406 3412 +6
===========================================
+ Hits 2594 2595 +1
- Misses 16632 16638 +6
- Partials 870 872 +2
Continue to review full report at Codecov.
|
…ments # Conflicts: # fetchLists/lists/tokens.json
@@ -313,6 +314,17 @@ export default class DexAg { | |||
data: tradeDetails.trade.data, | |||
value: tradeDetails.trade.value | |||
}; | |||
if ( | |||
tradeDetails.metadata.gasPrice && | |||
swapDetails.provider === 'bancor' && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we don't like to compare values to strings ??
Devop