From 909d5f077b677652c8ac86861f4acbe4d2dd4c0e Mon Sep 17 00:00:00 2001 From: connor Date: Fri, 1 Mar 2019 11:23:21 +0800 Subject: [PATCH] Add unix-socket-path option If there's no eosio-wallet in $HOME, it would run failed. The unix-socket-path should be assigned in the script. --- Wallet/start_wallet.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wallet/start_wallet.sh b/Wallet/start_wallet.sh index b10b54b..c58ec25 100644 --- a/Wallet/start_wallet.sh +++ b/Wallet/start_wallet.sh @@ -16,4 +16,4 @@ WALLET_POSRT="3000" $DATADIR/stop_wallet.sh -$NODEOSBINDIR/keosd/keosd --config-dir $DATADIR --wallet-dir $DATADIR --http-server-address $WALLET_HOST:$WALLET_POSRT $@ & echo $! > $DATADIR/wallet.pid +$NODEOSBINDIR/keosd/keosd --config-dir $DATADIR --wallet-dir $DATADIR --unix-socket-path $DATADIR/keosd.sock --http-server-address $WALLET_HOST:$WALLET_POSRT $@ & echo $! > $DATADIR/wallet.pid