├── README.md ├── attacker ├── __init__.py ├── base.py └── lie.py ├── client.py ├── environment.yml ├── main.py ├── requirements.txt ├── server ├── __init__.py ├── agg_funs.py └── base.py └── utils ├── __init__.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/README.md -------------------------------------------------------------------------------- /attacker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/attacker/__init__.py -------------------------------------------------------------------------------- /attacker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/attacker/base.py -------------------------------------------------------------------------------- /attacker/lie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/attacker/lie.py -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/client.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/environment.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/server/__init__.py -------------------------------------------------------------------------------- /server/agg_funs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/server/agg_funs.py -------------------------------------------------------------------------------- /server/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/server/base.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchenLiu-a/byzantine-gas/HEAD/utils/utils.py --------------------------------------------------------------------------------