Skip to content

Commit 973cae8

Browse files
Fix EEI registry.
1 parent 95c0a91 commit 973cae8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

erdpy/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
88
- TBD
99

1010
## [1.2.1] - 07.03.2022
11-
- [Bugfix: include "finish()" in EEI registry](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/119)
11+
- [Bugfix: fix functions in EEI registry](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/119)
1212
- [Bit of cleanup (remove deprecated files / functionality)](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/113)
1313

1414
## [1.2.0] - 07.03.2022

erdpy/projects/eei_registry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def __init__(self, activation_info: ActivationEpochsInfo) -> None:
101101
EEIFunction("getShardOfAddress", None, []),
102102
EEIFunction("isSmartContract", None, []),
103103
EEIFunction("getExternalBalance", None, []),
104-
EEIFunction("blockHash", None, []),
104+
EEIFunction("getBlockHash", None, []),
105105
EEIFunction("transferValue", None, []),
106106
EEIFunction("transferESDTExecute", None, []),
107107
EEIFunction("transferESDTNFTExecute", None, []),
@@ -117,7 +117,7 @@ def __init__(self, activation_info: ActivationEpochsInfo) -> None:
117117
EEIFunction("storageLoadFromAddress", None, []),
118118
EEIFunction("getCaller", None, []),
119119
EEIFunction("checkNoPayment", None, []),
120-
EEIFunction("callValue", None, []),
120+
EEIFunction("getCallValue", None, []),
121121
EEIFunction("getESDTValue", None, []),
122122
EEIFunction("getESDTTokenName", None, []),
123123
EEIFunction("getESDTTokenNonce", None, []),

0 commit comments

Comments
 (0)