Skip to content

Commit

Permalink
to_buy
Browse files Browse the repository at this point in the history
  • Loading branch information
icreator committed Nov 17, 2020
1 parent 60afc82 commit 9735380
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 0 deletions.
8 changes: 8 additions & 0 deletions _configs/wallets/Unix/conf/Horizen/!client.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

set cmd=%1
if "%1"=="" set cmd=getbalance

"C:\Program Files\Dogecoin\daemon\dogecoin-cli.exe" -conf=%CD%\client.conf %cmd% %2 %3 %4 %5


pause
13 changes: 13 additions & 0 deletions _configs/wallets/Unix/conf/Horizen/daemon.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
rpcuser=1234
rpcpassword=orRJyWYBEx9UryCTbvDCspogSBR5EAzoDLOY2
rpcallowip=127.0.0.1
rpcport=18231
rpcworkqueue=512
server=1
daemon=1
listen=1
txindex=1
logtimestamps=1

# notify service
blocknotify=/home/uera/7pay_wallets/notify ZEN %s
11 changes: 11 additions & 0 deletions _configs/wallets/Unix/conf/Horizen/daemon_not_note.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
rpcuser=1234
rpcpassword=orRJyWYBEx9UryCTbvDCspogSBR5EAzoDLOY2
rpcallowip=127.0.0.1
rpcport=18231
rpcworkqueue=512
server=1
daemon=1
listen=1
txindex=1
logtimestamps=1

23 changes: 23 additions & 0 deletions _configs/wallets/Unix/start_wallet_ZEN
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/sh

source $(dirname "$0")/include

NAME=zen
APP_DIR=/opt/${NAME}/bin
PROC=${NAME}d
APP=$APP_DIR/$PROC
CONF=daemon.conf

ARGS="-conf=$CONF"
# -datadir=$WORK_DIR/blockchains/$NAME"
#ARGS="$ARGS -txindex=1"

main() {
log "Starting $APP"
runWallet
delay 120
ARGS="$ARGS -reindex -rescan"
runWallet
}

main
23 changes: 23 additions & 0 deletions _configs/wallets/Unix/start_wallet_ZEN_not_note
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/sh

source $(dirname "$0")/include

NAME=zen
APP_DIR=/opt/${NAME}/bin
PROC=${NAME}d
APP=$APP_DIR/$PROC
CONF=daemon_not_note.conf

ARGS="-conf=$CONF -datadir=$WORK_DIR/blockchains/$NAME"
#ARGS="$ARGS -txindex=1"

main() {
log "Starting $APP"
runWallet
delay 120
ARGS="$ARGS -reindex -rescan"
#ARGS="$ARGS -reindex -rescan"
runWallet
}

main

0 comments on commit 9735380

Please sign in to comment.