mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-12 13:40:13 +00:00
9 lines
178 B
Go
9 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
|
|
}
|