mirror of
https://github.com/status-im/das-research.git
synced 2025-02-24 04:18:24 +00:00
18 lines
308 B
Python
18 lines
308 B
Python
#!/bin/python3
|
|
|
|
|
|
class Result:
|
|
|
|
config = []
|
|
missingVector = []
|
|
blockAvailable = -1
|
|
|
|
def __init__(self, config):
|
|
self.config = config
|
|
self.blockAvailable = -1
|
|
self.missingVector = []
|
|
|
|
|
|
def addMissing(self, missingVector):
|
|
self.missingVector = missingVector
|