-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from arcolife/master
update master with latest
- Loading branch information
Showing
54 changed files
with
813 additions
and
1,282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## Generic Infra | ||
|
||
- [ ] Separate Dapp architecture: `dapps/bank.py` is currently tightly coupled with node.py. | ||
- [ ] no gRPC communiction between nodes yet | ||
- [ ] add network_latency check | ||
|
||
## Fastchain | ||
|
||
- [ ] nodes call quits on any error | ||
- [ ] xyz.pem not found error on running client.py. Batch size not playing well in proto_message.message check | ||
- [ ] complete subprotocol.py | ||
- [ ] complete bft_committee.py | ||
- [ ] return blocks of transactions | ||
|
||
## Snailchain / Committee election | ||
|
||
- [ ] complete minerva/vrf.py function | ||
- [ ] complete snailchain/fpow.py dummy | ||
- [ ] integrate level db wrappers | ||
- [ ] integrate py-evm functionalities |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
bitcoin==1.1.42 | ||
docopt==0.6.2 | ||
ecdsa==0.13 | ||
protobuf==3.5.2.post1 | ||
pycrypto==2.6.1 | ||
pykwalify==1.6.1 | ||
PySocks==1.6.8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# pbft core configurations | ||
# name: pbft base configuration | ||
testbed_config: | ||
total: 5 # excluding base client | ||
client_id: 5 # total-1 => 0-indexed | ||
server_id_init: 4 # => 0 indexed | ||
threading_enabled: true | ||
requests: | ||
max: 256 | ||
batch_size: 32 | ||
general: | ||
max_fail: 1 | ||
base_port: 49500 | ||
tor_socksport_range: 9050,9150 | ||
# refer to README.md#parameterized-by-following section for these configurables | ||
slowchain: | ||
csize: 0 | ||
bft_committee: | ||
lambda: 1 | ||
timeout: 300 # seconds | ||
tbft: 1 | ||
csize: 0 | ||
th: 10 # adjusted to ⌈csize/3⌉ later | ||
actual_delta: 0 | ||
delta: 1 # ms to be adjusted from network ping test | ||
# https://github.com/matthieu-lapeyre/network-benchmark/blob/master/network_test.py | ||
chain: [] | ||
alpha: 0 # initial adversary hash power |
Empty file.
4 changes: 2 additions & 2 deletions
4
trueconsensus/fastchain/pbft-py/bank.py → trueconsensus/dapps/bank.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.