quorum/ui/frontend.go

9 lines
178 B
Go
Raw Normal View History

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