diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-01-26 21:01:00 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-01-26 21:01:00 +0800 |
commit | 63e76482ac0021afc80b504046c058b8d96891b2 (patch) | |
tree | 980e063693dae7fa6105646821ee6755b176b6e2 /accounts | |
parent | f2ab351e8d3b0a4e569ce56f6a4f17725ca5ba65 (diff) | |
parent | 19b2640e89465c1c57f1bbea0274d52d97151f60 (diff) | |
download | go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.gz go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.bz2 go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.lz go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.xz go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.zst go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.zip |
Merge pull request #2140 from obscuren/rpc2-console
Rpc2 console
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/account_manager.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/account_manager.go b/accounts/account_manager.go index 74006395c..34cf0fa53 100644 --- a/accounts/account_manager.go +++ b/accounts/account_manager.go @@ -100,7 +100,7 @@ func (am *Manager) Lock(addr common.Address) error { am.mutex.Lock() if unl, found := am.unlocked[addr]; found { am.mutex.Unlock() - am.expire(addr, unl, time.Duration(0) * time.Nanosecond) + am.expire(addr, unl, time.Duration(0)*time.Nanosecond) } else { am.mutex.Unlock() } |