Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalidArgs = errors.New("pstorage: invalid arguments") ErrNotExists = errors.New("pstorage: not exists") ErrExists = errors.New("pstorage: exists") ErrAccountNotExists = fmt.Errorf("%w: account", ErrNotExists) ErrAccountExists = fmt.Errorf("%w: account", ErrExists) ErrCertificateNotExists = fmt.Errorf("%w: certificate", ErrNotExists) ErrCertificateExists = fmt.Errorf("%w: certificate", ErrExists) )
Functions ¶
This section is empty.
Types ¶
type StorageW ¶
type StorageW interface {
AddAccount(context.Context, sdk.Address, cryptotypes.PubKey) error
DelAccount(context.Context, sdk.Address) error
AddAccountCertificate(context.Context, sdk.Address, *x509.Certificate, crypto.PublicKey) error
DelAccountCertificate(context.Context, sdk.Address, *big.Int) error
}
Click to show internal directories.
Click to hide internal directories.