Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dshulyak committed Feb 2, 2018
1 parent 42abf84 commit e48e0dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geth/transactions/addrlock.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (l *AddrLocker) LockNonceFor(address common.Address) uint64 {
return l.localNonce[address]
}

// UnlockAddr unlocks the mutex of the given account and updates nonce.
// UnlockNonceFor unlocks the mutex of the given account and updates nonce.
func (l *AddrLocker) UnlockNonceFor(address common.Address, nonce uint64) {
l.localNonce[address] = nonce
l.lock(address).Unlock()
Expand Down

0 comments on commit e48e0dd

Please sign in to comment.