mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-13 20:24:22 +00:00
10 lines
232 B
Python
10 lines
232 B
Python
from gen_base import gen_runner
|
|
|
|
from deposits import mini_deposits_suite, full_deposits_suite
|
|
|
|
if __name__ == "__main__":
|
|
gen_runner.run_generator("operations", [
|
|
mini_deposits_suite,
|
|
full_deposits_suite
|
|
])
|