fixed wallet API to expose TX type to GUI wallet; updated Dockerfile

This commit is contained in:
Some Random Crypto Guy
2024-08-09 16:03:18 +01:00
parent 8a82655fa4
commit 9f34b46961
7 changed files with 54 additions and 14 deletions

8
utils/conf/salviumd.conf Normal file
View File

@@ -0,0 +1,8 @@
# Configuration for salviumd
# Syntax: any command line option may be specified as 'clioptionname=value'.
# Boolean options such as 'no-igd' are specified as 'no-igd=1'.
# See 'salviumd --help' for all available options.
data-dir=/var/lib/salvium
log-file=/var/log/salvium/salvium.log
log-level=0

View File

@@ -0,0 +1,20 @@
[Unit]
Description=Salvium Full Node
After=network.target
[Service]
User=salvium
Group=salvium
WorkingDirectory=~
StateDirectory=salvium
LogsDirectory=salvium
Type=simple
ExecStart=/usr/bin/salviumd --config-file /etc/salviumd.conf --non-interactive
StandardOutput=null
StandardError=null
Restart=always
[Install]
WantedBy=multi-user.target