2022-07-22 21:26:29 +03:00
|
|
|
package result
|
2021-09-24 12:23:30 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/mempoolevent"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/network/payload"
|
|
|
|
)
|
|
|
|
|
2022-04-20 21:30:09 +03:00
|
|
|
// NotaryRequestEvent represents a P2PNotaryRequest event either added or removed
|
|
|
|
// from the notary payload pool.
|
2021-09-24 12:23:30 +03:00
|
|
|
type NotaryRequestEvent struct {
|
|
|
|
Type mempoolevent.Type `json:"type"`
|
|
|
|
NotaryRequest *payload.P2PNotaryRequest `json:"notaryrequest"`
|
|
|
|
}
|