5c97e0dcf2
It is used for subscriptions only, so move it to the subscriptions pkg.
13 lines
402 B
Go
13 lines
402 B
Go
package subscriptions
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/core/mempoolevent"
|
|
"github.com/nspcc-dev/neo-go/pkg/network/payload"
|
|
)
|
|
|
|
// NotaryRequestEvent represents P2PNotaryRequest event either added or removed
|
|
// from notary payload pool.
|
|
type NotaryRequestEvent struct {
|
|
Type mempoolevent.Type `json:"type"`
|
|
NotaryRequest *payload.P2PNotaryRequest `json:"notaryrequest"`
|
|
}
|