forked from TrueCloudLab/neoneo-go
b3c25b5a1f
Not worth a package of its own.
13 lines
401 B
Go
13 lines
401 B
Go
package result
|
|
|
|
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"`
|
|
}
|