mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 16:47:22 +00:00
8 lines
178 B
Go
8 lines
178 B
Go
package ui
|
|
|
|
import "github.com/ethereum/go-ethereum/core/types"
|
|
|
|
type Interface interface {
|
|
UnlockAccount(address []byte) bool
|
|
ConfirmTransaction(tx *types.Transaction) bool
|
|
}
|