MCPcopy Create free account
hub / github.com/ceramicnetwork/rust-ceramic / with_min_controller

Method with_min_controller

core/src/event_id.rs:357–364  ·  view source on GitHub ↗

Specify that the minimum controller value should be used for the event

(mut self)

Source from the content-addressed store, hash-verified

355impl Builder<WithSep> {
356 /// Specify that the minimum controller value should be used for the event
357 pub fn with_min_controller(mut self) -> Builder<WithController> {
358 self.state.bytes.extend(ZEROS_8);
359 Builder {
360 state: WithController {
361 bytes: self.state.bytes,
362 },
363 }
364 }
365 /// Specify that the maximum controller value should be used for the event
366 pub fn with_max_controller(mut self) -> Builder<WithController> {
367 self.state.bytes.extend(FFS_8);

Callers 3

process_extra_interestsFunction · 0.80

Calls 1

extendMethod · 0.45

Tested by 1