Zeth - Zerocash on Ethereum  0.8
Reference implementation of the Zeth protocol by Clearmatics
Public Member Functions | Public Attributes | List of all members
zeth.core.mixer_client.MixResult Class Reference

Public Member Functions

def __init__ (self, bytes new_merkle_root, List[bytes] nullifiers, List[MixOutputEvents] output_events)
 

Public Attributes

 new_merkle_root
 
 nullifiers
 
 output_events
 

Detailed Description

Data structure representing the result of the mix call.

Definition at line 204 of file mixer_client.py.

Constructor & Destructor Documentation

◆ __init__()

def zeth.core.mixer_client.MixResult.__init__ (   self,
bytes  new_merkle_root,
List[bytes]  nullifiers,
List[MixOutputEvents output_events 
)

Definition at line 208 of file mixer_client.py.

208  def __init__(
209  self,
210  new_merkle_root: bytes,
211  nullifiers: List[bytes],
212  output_events: List[MixOutputEvents]):
213  self.new_merkle_root = new_merkle_root
214  self.nullifiers = nullifiers
215  self.output_events = output_events
216 
217 

Member Data Documentation

◆ new_merkle_root

zeth.core.mixer_client.MixResult.new_merkle_root

Definition at line 209 of file mixer_client.py.

◆ nullifiers

zeth.core.mixer_client.MixResult.nullifiers

Definition at line 210 of file mixer_client.py.

◆ output_events

zeth.core.mixer_client.MixResult.output_events

Definition at line 211 of file mixer_client.py.


The documentation for this class was generated from the following file: