Skip to content

Commit 564a18d

Browse files
authored
chore: add localhost and local as network names (#768)
Signed-off-by: emiliyank <[email protected]>
1 parent e1ffa96 commit 564a18d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
5454
- Dependabot alerts (version bumps)
5555
- Fixed incorrect `TokenType` import (protobuf vs. SDK enum) in 18 example files.
5656
- Update `schedule_sign_transaction_e2e_test` to check for key presence instead of relying on index.
57+
- Add `localhost` and `local` as network names
5758

5859
### Breaking Changes
5960
- chore: changed the file names airdrop classes (#631)

src/hiero_sdk_python/client/network.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ class Network:
5959
'solo': [
6060
("localhost:50211", AccountId(0, 0, 3))
6161
],
62+
'localhost': [
63+
("localhost:50211", AccountId(0, 0, 3))
64+
],
65+
'local': [
66+
("localhost:50211", AccountId(0, 0, 3))
67+
],
6268
}
6369

6470
LEDGER_ID: Dict[str, bytes] = {

0 commit comments

Comments
 (0)