mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-28 09:31:34 +00:00
14 lines
402 B
Go
14 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"`
|
||
|
}
|