Commit e0bd8e3
* GH-631: get the skeleton ready
* GH-631: add a working recursive method for computing patch
* GH-631: add test for computing patch; not working yet
* GH-631: improve the test for the compute_patch function and make it working
* GH-631: refactor the recursive function to compute patch
* GH-631: refactor the conditionals inside the recursion
* GH-631: refactor the compute_patch() to use match
* GH-631: compute_patch() should search for neighbors in it's database for the root node
* GH-631: improve the solution for the compute_patch()
* GH-631: minor code cleanup
* GH-631: add one more test to make compute_patch() robust
* GH-631: add one more test for compute_patch()
* GH-631: reduce the number of recursion calls and minize hashset size
* GH-631: add test to check if the standard gossip handler ignores gossips that are outside the patch
* GH-631: make the test work
* GH-631: fix the test proper_standard_gossip_is_matched_and_handled
* GH-631: fix the tests inside gossip_acceptor.rs
* GH-631: refactor the compute_patch()
* GH-631: remove compiler warnings
* GH-631: filter agrs before calling the function that'll add introductory node
* GH-631: only use references to build hashmap from agr
* GH-631: use constant for computing patch
* GH-631: remove redundant code
* GH-631: remove clippy warnings
* GH-631: rename test to can_retrieve_all_full_and_half_neighbors()
* GH-631: remove contract test for eth ropsten
* GH-631: modify extract_node_reference()
* GH-631: Did more fixing on the blockchain multinode test
* GH-631: format the code
* GH-600: Workaround multinode test libc failure
* GH-631: Review 1 (#202)
* GH-631: refactor the compute_patch()
* GH-631: use node record instead of database
* GH-631: rename the some_node into not_a_neighbor
* GH-631: create an outboard function for creating patch
* GH-631: make a function for filtering agrs
* GH-631: remove unused functions
* GH-631: refactor test in gossip_acceptor.rs
* GH-631: minor changes in gossip_acceptor.rs
* GH-631: write test gossip_acceptor_filters_out_the_node_addr_of_incoming_gossip; not working yet
* GH-631: remove the test that you've recently written
* GH-631: Review 1 changes
* GH-631: remove clippy warnings
* GH-633: change the version number of libc from 2.36-4 to 2.36-6
* Trigger Build
* GH-631: An attempt to fix multinode test provided_and_consumed_services_are_recorded_in_databases() by using duration
* GH-631: remove the clippy allow statement for the compute_patch_recursive()
Co-authored-by: Dan Wiebe <[email protected]>
Co-authored-by: masqrauder <[email protected]>
1 parent f148227 commit e0bd8e3
File tree
7 files changed
+381
-59
lines changed- multinode_integration_tests
- docker
- src
- tests
- node
- src/neighborhood
- tests
7 files changed
+381
-59
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | | - | |
| 8 | + | |
8 | 9 | | |
9 | 10 | | |
10 | 11 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1144 | 1144 | | |
1145 | 1145 | | |
1146 | 1146 | | |
1147 | | - | |
| 1147 | + | |
1148 | 1148 | | |
1149 | 1149 | | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
1150 | 1154 | | |
1151 | | - | |
1152 | | - | |
| 1155 | + | |
| 1156 | + | |
1153 | 1157 | | |
1154 | 1158 | | |
1155 | 1159 | | |
1156 | 1160 | | |
1157 | 1161 | | |
1158 | | - | |
1159 | | - | |
1160 | | - | |
1161 | | - | |
1162 | | - | |
1163 | | - | |
1164 | | - | |
1165 | | - | |
1166 | | - | |
1167 | | - | |
1168 | | - | |
1169 | | - | |
1170 | | - | |
1171 | | - | |
1172 | | - | |
1173 | | - | |
1174 | | - | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
1175 | 1169 | | |
1176 | | - | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
1177 | 1174 | | |
1178 | 1175 | | |
1179 | | - | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
1180 | 1183 | | |
1181 | 1184 | | |
1182 | 1185 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
139 | | - | |
| 139 | + | |
140 | 140 | | |
141 | 141 | | |
142 | 142 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
42 | 45 | | |
43 | 46 | | |
44 | 47 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
0 commit comments