#!/bin/python3 class Shape: def __init__(self, blockSize, numberValidators, failureRate, chi, netDegree, run): self.run = run self.numberValidators = numberValidators self.blockSize = blockSize self.failureRate = failureRate self.netDegree = netDegree self.chi = chi