Skip to content

Commit

Permalink
chore: fix MsgRewardsOptOut
Browse files Browse the repository at this point in the history
  • Loading branch information
achilleas-kal committed Nov 22, 2022
1 parent 848bb21 commit 2185e51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ Note that the [sync client](https://github.com/InjectiveLabs/sdk-python/blob/mas
### Changelogs
**0.5.9.0**
* Re-gen proto
* Fix MsgRewardsOptOut
* Remove pysha3 dependency

**0.5.8.8**
Expand Down
4 changes: 2 additions & 2 deletions pyinjective/composer.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,9 @@ def MsgBatchCancelSpotOrders(self, sender: str, data: List):
sender=sender, data=data
)

def MsgRewardsOptOut(self, sender: str, dmm_account: str):
def MsgRewardsOptOut(self, sender: str):
return injective_exchange_tx_pb.MsgRewardsOptOut(
sender=sender, dmm_account=dmm_account
sender=sender
)

def MsgCreateDerivativeLimitOrder(
Expand Down

0 comments on commit 2185e51

Please sign in to comment.