diff options
author | Husam Ibrahim <39692071+HusamIbrahim@users.noreply.github.com> | 2018-06-19 19:36:35 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-06-19 19:36:35 +0800 |
commit | 3e57c33147bf05329dd9ef9868c04e301ac8bb58 (patch) | |
tree | 4a2de882f56dc9d8dbeb011f21ce686f157d5f0e /accounts/usbwallet/ledger.go | |
parent | baa7eb901ec74a47e8d6f85e4313f2b3980df727 (diff) | |
download | go-tangerine-3e57c33147bf05329dd9ef9868c04e301ac8bb58.tar go-tangerine-3e57c33147bf05329dd9ef9868c04e301ac8bb58.tar.gz go-tangerine-3e57c33147bf05329dd9ef9868c04e301ac8bb58.tar.bz2 go-tangerine-3e57c33147bf05329dd9ef9868c04e301ac8bb58.tar.lz go-tangerine-3e57c33147bf05329dd9ef9868c04e301ac8bb58.tar.xz go-tangerine-3e57c33147bf05329dd9ef9868c04e301ac8bb58.tar.zst go-tangerine-3e57c33147bf05329dd9ef9868c04e301ac8bb58.zip |
accounts/usbwallet: correct comment typo (#17008)
Diffstat (limited to 'accounts/usbwallet/ledger.go')
-rw-r--r-- | accounts/usbwallet/ledger.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/usbwallet/ledger.go b/accounts/usbwallet/ledger.go index 7ad32dd1e..2583fbc4d 100644 --- a/accounts/usbwallet/ledger.go +++ b/accounts/usbwallet/ledger.go @@ -302,7 +302,7 @@ func (w *ledgerDriver) ledgerSign(derivationPath []uint32, tx *types.Transaction for i, component := range derivationPath { binary.BigEndian.PutUint32(path[1+4*i:], component) } - // Create the transaction RLP based on whether legacy or EIP155 signing was requeste + // Create the transaction RLP based on whether legacy or EIP155 signing was requested var ( txrlp []byte err error |