plugeth/ui/frontend.go
2015-03-09 13:49:14 +01:00

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
}