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