You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,6 @@ Available commands:
121
121
--balance to set starting hbar balance of the created accounts.
122
122
--async to enable or disable asynchronous creation of accounts.
123
123
--b or --blocklist to enable or disable account blocklisting. Depending on how many private keys are blocklisted, this will affect the generated on startup accounts.
124
-
--enable-debug to enable or disable debugging of the local node [boolean] [default: false]
125
124
--network-tag to select custom network node tag [string] [defaults: predefined selected configuration]
126
125
--mirror-tag to select custom mirror node tag [string] [defaults: predefined selected configuration]
127
126
--relay-tag to select custom hedera-json-rpc relay tag [string] [defaults: predefined selected configuration]
@@ -133,9 +132,6 @@ Available commands:
133
132
--h or --host to override the default host.
134
133
--balance to set starting hbar balance of the created accounts.
135
134
--async to enable or disable asynchronous creation of accounts.
136
-
debug [timestamp] - Parses and prints the contents of the record file that has been created
137
-
during the selected timestamp.
138
-
Important: Local node must be started with the -g, --enable-debug flag to enable this feature
139
135
```
140
136
141
137
Note: Generated accounts are 3 types (ECDSA, Alias ECDSA and ED25519). All of them are usable via HederaSDK. Only Alias ECDSA accounts can be imported into wallet like Metamask or used in ethers.
Copy file name to clipboardExpand all lines: src/Errors/LocalNodeErrors.ts
-18Lines changed: 0 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -72,22 +72,4 @@ export const Errors = {
72
72
* @returns {LocalNodeErrors} The client error.
73
73
*/
74
74
CLEINT_ERROR: (msg?: string)=>newLocalNodeErrors("Client Error",`Something went wrong, while trying to create SDK Client${msg ? `: ${msg}` : ``}`),
75
-
76
-
/**
77
-
* Create a no record file found error.
78
-
* @returns {LocalNodeErrors} The no record file found error.
79
-
*/
80
-
NO_RECORD_FILE_FOUND_ERROR: ()=>newLocalNodeErrors('No record file found Error',"This record file doesn't not exist, check if timestamp is correct and local-node was started in debug mode using --enable-debug option"),
81
-
82
-
/**
83
-
* Create an invalid timestamp error.
84
-
* @returns {LocalNodeErrors} The invalid timestamp error.
* @returns {LocalNodeErrors} The debug mode check error.
91
-
*/
92
-
DEBUG_MODE_CHECK_ERROR: ()=>newLocalNodeErrors('Debug Mode check Error','Debug mode is not enabled to use this command. Please use the --enable-debug flag to enable it.'),
0 commit comments