Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove use of deprecated commands #94

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion features/dapp_develop/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ func installContract(compiledContractFileName string, contractWorkingDirectory s

func createNetworkConfig(configName string, rpcUrl string, networkPassphrase string, e2eConfig *e2e.E2EConfig) error {
envCmd := cmd.NewCmd("soroban",
"config",
"network",
"add",
"--rpc-url", rpcUrl,
Expand Down
2 changes: 1 addition & 1 deletion features/dapp_develop/soroban_config.exp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set KEY_NAME [lindex $argv 0]
set KEY [lindex $argv 1]
set timeout -1
spawn soroban config identity add --secret-key $KEY_NAME
spawn soroban keys add --secret-key $KEY_NAME
expect -exact "Type a secret key: \r"
send -- "$KEY\r"
expect eof
Loading