From 57089a3c37541815581d3afab89b18a3756fb501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Zdyba=C5=82?= Date: Thu, 12 Sep 2019 10:38:06 +0200 Subject: [PATCH] accounts: updated pcsc API call --- accounts/scwallet/hub.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/scwallet/hub.go b/accounts/scwallet/hub.go index 5f939c6586..0f4d6c05e7 100644 --- a/accounts/scwallet/hub.go +++ b/accounts/scwallet/hub.go @@ -153,7 +153,7 @@ func (hub *Hub) setPairing(wallet *Wallet, pairing *smartcardPairing) error { // NewHub creates a new hardware wallet manager for smartcards. func NewHub(daemonPath string, scheme string, datadir string) (*Hub, error) { - context, err := pcsc.EstablishContext(daemonPath, pcsc.ScopeSystem) + context, err := pcsc.EstablishContext(pcsc.ScopeSystem) if err != nil { return nil, err }