2015-02-26 10:16:01 +00:00
|
|
|
package ui
|
|
|
|
|
2015-03-09 12:49:14 +00:00
|
|
|
import "github.com/ethereum/go-ethereum/core/types"
|
2015-02-26 10:16:01 +00:00
|
|
|
|
2015-03-09 12:49:14 +00:00
|
|
|
type Interface interface {
|
|
|
|
UnlockAccount(address []byte) bool
|
|
|
|
ConfirmTransaction(tx *types.Transaction) bool
|
2015-02-26 10:16:01 +00:00
|
|
|
}
|