diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-23 15:58:05 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-02-13 20:00:04 +0800 |
commit | ac2a0e615bd45eab81cd793cde5a4eef2a8581c8 (patch) | |
tree | 9d6d14e438e65c1bded07473fa1c33250f44f4bd /accounts/usbwallet/usb.go | |
parent | 52bd4e29ff5c6a6f13ba163f24da96325f63683b (diff) | |
download | go-tangerine-ac2a0e615bd45eab81cd793cde5a4eef2a8581c8.tar go-tangerine-ac2a0e615bd45eab81cd793cde5a4eef2a8581c8.tar.gz go-tangerine-ac2a0e615bd45eab81cd793cde5a4eef2a8581c8.tar.bz2 go-tangerine-ac2a0e615bd45eab81cd793cde5a4eef2a8581c8.tar.lz go-tangerine-ac2a0e615bd45eab81cd793cde5a4eef2a8581c8.tar.xz go-tangerine-ac2a0e615bd45eab81cd793cde5a4eef2a8581c8.tar.zst go-tangerine-ac2a0e615bd45eab81cd793cde5a4eef2a8581c8.zip |
accounts/usbwallet: initial support for Ledger wallets
Diffstat (limited to 'accounts/usbwallet/usb.go')
-rw-r--r-- | accounts/usbwallet/usb.go | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/accounts/usbwallet/usb.go b/accounts/usbwallet/usb.go new file mode 100644 index 000000000..550f05ba6 --- /dev/null +++ b/accounts/usbwallet/usb.go @@ -0,0 +1,27 @@ +// Copyright 2017 The go-ethereum Authors +// This file is part of the go-ethereum library. +// +// The go-ethereum library is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// The go-ethereum library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. + +// Package usbwallet implements support for USB hardware wallets. +package usbwallet + +import "github.com/karalabe/gousb/usb" + +// deviceID is a combined vendor/product identifier to uniquely identify a USB +// hardware device. +type deviceID struct { + Vendor usb.ID // The Vendor identifer + Product usb.ID // The Product identifier +} |