Skip to content

Commit

Permalink
Merge pull request #150 from ElrondNetwork/fix-erdpy-testnet-config
Browse files Browse the repository at this point in the history
Fix erdpy testnet config
  • Loading branch information
claudiu725 authored Jul 25, 2022
2 parents 186b43a + 5d80045 commit 950fe95
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
5 changes: 5 additions & 0 deletions erdpy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
## [Unreleased]
- TBD

## [2.0.1]
- [Fix erdpy testnet config](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/150)
- [Fix tests](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/149)
- [Fix test replacement rules](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/148)

## [2.0.0]
- [Show password prompt if no passfile specificied](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/144)

Expand Down
2 changes: 1 addition & 1 deletion erdpy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
2 changes: 1 addition & 1 deletion erdpy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def get_defaults() -> Dict[str, Any]:
"dependencies.elrond_proxy_go.tag": "latest",
"dependencies.elrond_proxy_go.urlTemplate.linux": "https://github.com/ElrondNetwork/elrond-proxy-go/archive/{TAG}.tar.gz",
"dependencies.elrond_proxy_go.urlTemplate.osx": "https://github.com/ElrondNetwork/elrond-proxy-go/archive/{TAG}.tar.gz",
"dependencies.golang.tag": "go1.15.2",
"dependencies.golang.tag": "go1.18.4",
"dependencies.golang.urlTemplate.linux": "https://golang.org/dl/{TAG}.linux-amd64.tar.gz",
"dependencies.golang.urlTemplate.osx": "https://golang.org/dl/{TAG}.darwin-amd64.tar.gz",
"dependencies.mcl_signer.tag": "latest",
Expand Down
4 changes: 0 additions & 4 deletions erdpy/testnet/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,6 @@ def copy_config_to_proxy(testnet_config: TestnetConfiguration):
proxy_config_source / 'external.toml',
proxy_config)

shutil.copy(
proxy_config_source / 'economics.toml',
proxy_config)


def patch_proxy_config(testnet_config: TestnetConfiguration):
proxy_config_file = testnet_config.proxy_config_folder() / 'config.toml'
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 @@
with open("README.md", "r") as fh:
long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy"

VERSION = "2.0.0"
VERSION = "2.0.1"

try:
with open('./erdpy/_version.py', 'wt') as versionfile:
Expand Down

0 comments on commit 950fe95

Please sign in to comment.