-
Notifications
You must be signed in to change notification settings - Fork 4
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
[lightapi/python] task: add NemConnector endpoints #464
base: dev
Are you sure you want to change the base?
Conversation
e60197d
to
d79236b
Compare
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## dev #464 +/- ##
==========================================
+ Coverage 98.22% 98.23% +0.01%
==========================================
Files 161 163 +2
Lines 6528 6748 +220
Branches 143 143
==========================================
+ Hits 6412 6629 +217
- Misses 116 119 +3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Raises NodeException on connection or content failure. | ||
""" | ||
|
||
return await self._dispatch('post', url_path, property_name, data=json.dumps(request_payload), headers={ |
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.
you probably want to use json=
instead of data
:
a) it doesn't require json.dumps
b) you don't need headers as it does that automatically
apart from that, looks ok
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.
good to know, that is powerful! 👍🏼
Do you think we should rename it, because this endpoint is only use for local node?
|
901e815
to
2ee1d0e
Compare
a3369ee
to
a59a4d9
Compare
6bf98b4
to
d7d6710
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.
👍🏾
…after and local/block/at
… ImportanceTransferTransaction and ConvertAccountToMultisig
…on, MosaicDefinitionTransaction and MosaicSupplyChangeTransaction
…ignatureTransaction
…ange in multisig account modification
5cf95c5
to
8bc15f3
Compare
719e08f
to
5569c66
Compare
What was the issue?
What's the fix?