14 lines
427 B
Go
14 lines
427 B
Go
package result
|
|
|
|
import (
|
|
"git.marketally.com/tutus-one/tutus-chain/pkg/core/mempoolevent"
|
|
"git.marketally.com/tutus-one/tutus-chain/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"`
|
|
}
|