We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95c0a91 commit 973cae8Copy full SHA for 973cae8
2 files changed
erdpy/CHANGELOG.md
@@ -8,7 +8,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
8
- TBD
9
10
## [1.2.1] - 07.03.2022
11
- - [Bugfix: include "finish()" in EEI registry](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/119)
+ - [Bugfix: fix functions in EEI registry](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/119)
12
- [Bit of cleanup (remove deprecated files / functionality)](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/113)
13
14
## [1.2.0] - 07.03.2022
erdpy/projects/eei_registry.py
@@ -101,7 +101,7 @@ def __init__(self, activation_info: ActivationEpochsInfo) -> None:
101
EEIFunction("getShardOfAddress", None, []),
102
EEIFunction("isSmartContract", None, []),
103
EEIFunction("getExternalBalance", None, []),
104
- EEIFunction("blockHash", None, []),
+ EEIFunction("getBlockHash", None, []),
105
EEIFunction("transferValue", None, []),
106
EEIFunction("transferESDTExecute", None, []),
107
EEIFunction("transferESDTNFTExecute", None, []),
@@ -117,7 +117,7 @@ def __init__(self, activation_info: ActivationEpochsInfo) -> None:
117
EEIFunction("storageLoadFromAddress", None, []),
118
EEIFunction("getCaller", None, []),
119
EEIFunction("checkNoPayment", None, []),
120
- EEIFunction("callValue", None, []),
+ EEIFunction("getCallValue", None, []),
121
EEIFunction("getESDTValue", None, []),
122
EEIFunction("getESDTTokenName", None, []),
123
EEIFunction("getESDTTokenNonce", None, []),
0 commit comments