aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-03-10 09:00:06 +0800
committerFelix Lange <fjl@twurst.com>2015-03-10 09:00:06 +0800
commit395da0e7c1accfaeda6527a473e9a31b11fe88a8 (patch)
treeb36b8df941188111b4dd0b386a3089347bec5954 /ui
parentd1e04f7388ec29b009d646e20570393a5851f54d (diff)
downloadgo-tangerine-395da0e7c1accfaeda6527a473e9a31b11fe88a8.tar
go-tangerine-395da0e7c1accfaeda6527a473e9a31b11fe88a8.tar.gz
go-tangerine-395da0e7c1accfaeda6527a473e9a31b11fe88a8.tar.bz2
go-tangerine-395da0e7c1accfaeda6527a473e9a31b11fe88a8.tar.lz
go-tangerine-395da0e7c1accfaeda6527a473e9a31b11fe88a8.tar.xz
go-tangerine-395da0e7c1accfaeda6527a473e9a31b11fe88a8.tar.zst
go-tangerine-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.go8
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
-}