status-go/sign/result.go
Igor Mandrigin a9eb5a7d2b Generalize signing requests.
We need to be able to sign more than just transactions to make DApps
work properly. This change separates signing requests from the
transactions and make it more general to prepare to intoduce different
types of signing requests.

This change is designed to preserve status APIs, so it is
backward-comparible with the current API bindings.
2018-04-09 20:48:00 +02:00

10 lines
182 B
Go

package sign
import "github.com/ethereum/go-ethereum/common"
// Result is a result of a signing request, error or successful
type Result struct {
Hash common.Hash
Error error
}