You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
289 B
12 lines
289 B
#!/usr/bin/env bash
|
|
|
|
seed=$1
|
|
|
|
echo "Importing seed or key..."
|
|
if ! electrum restore "$seed" > /dev/null 2>&1 ]]; then
|
|
if ! electrum restore "$(bip39toxprv $seed)" > /dev/null 2>&1; then
|
|
>&2 echo "Error: Seed or key not recognised."
|
|
exit 1
|
|
fi
|
|
fi
|
|
exec electrum --gui text $server_args
|
|
|