Beispiel #1
0
 static OutputParser()
 {
     _parserCore = new ParserCore <Output>(Parse, "output");
 }
Beispiel #2
0
 static InputParser()
 {
     _parserCore = new ParserCore <Input>(Parse, "input");
 }
 static TransactionParser()
 {
     _parserCore = new ParserCore <Transaction>(Parse, "transaction");
 }
 static BlockFileParser()
 {
     _parserCore = new ParserCore <BlockFile>(Parse, "block file");
 }
Beispiel #5
0
 static BlockParser()
 {
     _parserCore = new ParserCore <Block>(Parse, "block");
 }
Beispiel #6
0
 static VarIntParser()
 {
     _parserCore = new ParserCore <VarInt>(Parse, "variable integer");
 }