Skip to content

Commit

Permalink
Just test network connector needed
Browse files Browse the repository at this point in the history
  • Loading branch information
bauerjakob committed Mar 29, 2023
1 parent edea949 commit 4790c84
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions DoorLockClient/DoorLockClient.service
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ Description=DoorLockClient

[Service]
# systemd will run this executable to start the service
ExecStart=/home/pi/.dotnet/dotnet /srv/DoorLockClient/DoorLockClient.dll
ExecStart=/opt/dotnet/dotnet /srv/DoorLockClient/DoorLockClient.dll

Restart=on-failure
RestartSec=3s

# to query logs using journalctl, set a logical name here
SyslogIdentifier=DoorLockClient
Expand All @@ -12,7 +15,7 @@ User=pi

# This environment variable is necessary when dotnet isn't loaded for the specified user.
# To figure out this value, run 'env | grep DOTNET_ROOT' when dotnet has been loaded into your shell.
Environment=DOTNET_ROOT=/home/pi/.dotnet
Environment=DOTNET_ROOT=/opt/dotnet

[Install]
WantedBy=multi-user.target
Binary file removed DoorLockWebsite/public/logos/logo.afdesign
Binary file not shown.
2 changes: 1 addition & 1 deletion DoorLockWebsite/utils/connectors.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { InjectedConnector } from "@web3-react/injected-connector";

export const injected = new InjectedConnector({supportedChainIds: [1, 3, 4, 5, 42, 1337, 5777, 11155111]});
export const injected = new InjectedConnector({supportedChainIds: [11155111]});

0 comments on commit 4790c84

Please sign in to comment.