mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-03 23:19:44 +00:00
28908aa3cf
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
13 lines
408 B
Go
13 lines
408 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 a P2PNotaryRequest event either added or removed
|
|
// from the notary payload pool.
|
|
type NotaryRequestEvent struct {
|
|
Type mempoolevent.Type `json:"type"`
|
|
NotaryRequest *payload.P2PNotaryRequest `json:"notaryrequest"`
|
|
}
|