status-im/status-go

View on GitHub
eth-node/types/wrapped.go

Summary

Maintainability
A
0 mins
Test Coverage
package types

// Wrapped tells that a given object has an underlying representation
// and this representation can be accessed using `Unwrap` method.
type Wrapped interface {
    Unwrap() interface{}
}