diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-10 09:00:06 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-10 09:00:06 +0800 |
commit | 395da0e7c1accfaeda6527a473e9a31b11fe88a8 (patch) | |
tree | b36b8df941188111b4dd0b386a3089347bec5954 /ui | |
parent | d1e04f7388ec29b009d646e20570393a5851f54d (diff) | |
download | dexon-395da0e7c1accfaeda6527a473e9a31b11fe88a8.tar.gz dexon-395da0e7c1accfaeda6527a473e9a31b11fe88a8.tar.zst dexon-395da0e7c1accfaeda6527a473e9a31b11fe88a8.zip |
xeth: use Frontend interface to unlock accounts
The interface has moved to package xeth because that's where it is
actually used.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/frontend.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ui/frontend.go b/ui/frontend.go deleted file mode 100644 index 413a24259..000000000 --- a/ui/frontend.go +++ /dev/null @@ -1,8 +0,0 @@ -package ui - -import "github.com/ethereum/go-ethereum/core/types" - -type Interface interface { - UnlockAccount(address []byte) bool - ConfirmTransaction(tx *types.Transaction) bool -} |