frontend.go 178 B

12345678
  1. package ui
  2. import "github.com/ethereum/go-ethereum/core/types"
  3. type Interface interface {
  4. UnlockAccount(address []byte) bool
  5. ConfirmTransaction(tx *types.Transaction) bool
  6. }