Skip to content

Commit

Permalink
Fix etherbase to proper variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Magicking committed Nov 29, 2016
1 parent dac2728 commit 1094f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import_keys() {
if mv "${key}" /node_key; then
/geth --datadir "${DATA_DIR}" --password "${PWD_FILE}" account import /node_key
echo "Consuming ${key}"
etherbase=`echo -n /node_key | grep -o '0x.*'`
etherbase=`echo -n "${key}" | grep -o '0x.*'`
cat > "${ENV_FILE}" <<HEREDOC
#!/bin/sh
Expand Down

0 comments on commit 1094f0c

Please sign in to comment.