Skip to content

Commit

Permalink
[ECHOT-298] Up library patch version >> 0.1.52: Update fee types, upd…
Browse files Browse the repository at this point in the history
…ate sidechain config

[ECHOT-298] Up library patch version >> 0.1.52: Update fee types, update sidechain config
  • Loading branch information
Eugene Vasilev authored Dec 18, 2019
1 parent bebb8a8 commit a3ef314
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions echopy/echobase/feetypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,18 @@ def __init__(self, *args, **kwargs):
operations["sidechain_eth_create_address"]: DefaultFee,
operations["sidechain_eth_approve_address"]: DefaultFee,
operations["sidechain_eth_deposit"]: DefaultFee,
operations["sidechain_eth_send_deposit"]: DefaultFee,
operations["sidechain_eth_withdraw"]: DefaultFee,
operations["sidechain_eth_send_withdraw"]: DefaultFee,
operations["sidechain_eth_approve_withdraw"]: DefaultFee,
operations["sidechain_eth_update_contract_address"]: DefaultFee,
operations["sidechain_issue"]: DefaultFee,
operations["sidechain_burn"]: DefaultFee,
operations["sidechain_erc20_register_token"]: Erc20RegisterToken,
operations["sidechain_erc20_deposit_token"]: DefaultFee,
operations["sidechain_erc20_send_deposit_token"]: DefaultFee,
operations["sidechain_erc20_withdraw_token"]: DefaultFee,
operations["sidechain_erc20_send_withdraw_token"]: DefaultFee,
operations["sidechain_erc20_approve_token_withdraw"]: DefaultFee,
operations["sidechain_erc20_issue"]: DefaultFee,
operations["sidechain_erc20_burn"]: DefaultFee,
Expand Down
2 changes: 1 addition & 1 deletion echopy/echobase/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def __init__(self, *args, **kwargs):
super().__init__(
OrderedDict(
[
("generate_eth_address", Int64(kwargs["generate_eth_address"]))
("create_eth_address", Int64(kwargs["create_eth_address"]))
]
)
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import setup, find_packages

VERSION = "0.1.51"
VERSION = "0.1.52"
packages = find_packages()
packages.remove('test')

Expand Down

0 comments on commit a3ef314

Please sign in to comment.