mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
10 lines
182 B
Go
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
|
||
|
}
|