(author identity.Interface, value bool)
| 79 | } |
| 80 | |
| 81 | func NewSetSignatureRequired(author identity.Interface, value bool) *SetSignatureRequired { |
| 82 | return &SetSignatureRequired{ |
| 83 | OpBase: dag.NewOpBase(SetSignatureRequiredOp, author, time.Now().Unix()), |
| 84 | Value: value, |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | func (ssr *SetSignatureRequired) Id() entity.Id { |
| 89 | // the Id of the operation is the hash of the serialized data. |
no test coverage detected