diff options
Diffstat (limited to 'accounts/usbwallet/usbwallet.go')
-rw-r--r-- | accounts/usbwallet/usbwallet.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/accounts/usbwallet/usbwallet.go b/accounts/usbwallet/usbwallet.go index 3989f3d02..938ab1e6a 100644 --- a/accounts/usbwallet/usbwallet.go +++ b/accounts/usbwallet/usbwallet.go @@ -14,16 +14,12 @@ // 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/>. -// +build !ios - // 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 + Vendor uint16 // The Vendor identifer + Product uint16 // The Product identifier } |