-
Notifications
You must be signed in to change notification settings - Fork 820
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
Bitstamp: Add missing API fields #1510
Bitstamp: Add missing API fields #1510
Conversation
assert.Equal(t, 0.50000000, res.AmountAtCreate, "AmountAtCreate should match") | ||
assert.Equal(t, 110.00, res.LimitPrice, "LimitPrice should match") | ||
assert.Equal(t, "1234123412341234", res.ClientOrderID, "ClientOrderID should match") | ||
assert.Equal(t, "BTC/USD", res.Market, "Market should match") |
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.
One comment was regarding the Currency is not set for []Order type. Bitstamp open orders for markets do not include currency in the response so I have added "Market" which was missing
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.
Nice work Beadko!
b5c530f
to
45384a1
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1510 +/- ##
==========================================
+ Coverage 36.03% 36.05% +0.01%
==========================================
Files 411 411
Lines 177750 177754 +4
==========================================
+ Hits 64061 64088 +27
+ Misses 105839 105816 -23
Partials 7850 7850
|
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.
Just one really minor thing 😄
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.
tACK! Thanks beadko!
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.
One thing from me everything else looks good. Nice work.
7edc42d
to
e6caa92
Compare
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.
Thanks Bea! changes tack.
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.
tACK mock tests on and off (unauth). Thanks @Beadko !
PR Description
Issues picked up during PR#1423 but were considered out of scope. In addition, the main error checks changed from assert to require.
Fixes # (issue)
Type of change
Please delete options that are not relevant and add an
x
in[]
as item is complete.How has this been tested
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration and
also consider improving test coverage whilst working on a certain feature or package.
Checklist