diff --git a/evaluations/validated-streams_2_arahangua.md b/evaluations/validated-streams_2_arahangua.md
index a325e248b..d91408e3a 100755
--- a/evaluations/validated-streams_2_arahangua.md
+++ b/evaluations/validated-streams_2_arahangua.md
@@ -10,7 +10,7 @@
| ------ | ----------- | :------: | ---- |----------------- |
| **0a.** | License |
| [LICENSE](https://github.com/comrade-coop/validated-streams/blob/5dc862fc2fe3cab7e8b6e2272b89ff21607a4038/LICENSE) | MIT |
| **0b.** | Documentation | | [README](https://github.com/comrade-coop/validated-streams/blob/feed169d51143e1fd303a14a9aaaaaddb6f2a831/README.md) | easy to follow description with a schematic |
-| **0c.** | Testing and Testing Guide | | [Running tests](https://github.com/comrade-coop/validated-streams/blob/feed169d51143e1fd303a14a9aaaaaddb6f2a831/README.md#testing)
[proofs](https://github.com/comrade-coop/validated-streams/blob/main/vstreams/src/proofs/tests.rs)
[events](https://github.com/comrade-coop/validated-streams/blob/main/vstreams/src/events/tests.rs)
[pallet](https://github.com/comrade-coop/validated-streams/blob/a8a55ab7f2f16401c8aefefccdcdfa4638ddb39a/pallet/src/tests.rs) | - With 'on-chain proofs' : the project could be built successfully with ```cargo build --release --no-default-features```. However, tests for 'on-chain proofs' case failed (see Outstanding Issues below)
- Without 'on-chain proofs' : `cargo tarpaulin` reports ~33% test coverage for the 'consensus' crate with 19 tests and ~7% coverage for the 'pallet' with 3 tests. The links provided for ['proofs'](https://github.com/comrade-coop/validated-streams/blob/main/vstreams/src/proofs/tests.rs) and ['events'](https://github.com/comrade-coop/validated-streams/blob/main/vstreams/src/events/tests.rs) seem to point at invalid urls. Presumably these links are outdated with the recent changes (i.e., renaming 'vstream' to 'consensus_validated_streams', integration of 'proof'/'event' to the 'consensus' crate).
- Could not build benchmarks follwing the instruction (see Outstanding Issues).
|
+| **0c.** | Testing and Testing Guide | | [Running tests](https://github.com/comrade-coop/validated-streams/blob/feed169d51143e1fd303a14a9aaaaaddb6f2a831/README.md#testing)
[proofs](https://github.com/comrade-coop/validated-streams/blob/main/vstreams/src/proofs/tests.rs)
[events](https://github.com/comrade-coop/validated-streams/blob/main/vstreams/src/events/tests.rs)
[pallet](https://github.com/comrade-coop/validated-streams/blob/a8a55ab7f2f16401c8aefefccdcdfa4638ddb39a/pallet/src/tests.rs) | - With 'on-chain proofs' : the project could be built successfully with ```cargo build --release --no-default-features```. However, the tests for 'on-chain proofs' cases failed (see Outstanding Issues below)
- Without 'on-chain proofs' : `cargo tarpaulin` reports ~33% test coverage for the 'consensus' crate with 19 tests and ~7% coverage for the 'pallet' with 3 tests. The links provided for ['proofs'](https://github.com/comrade-coop/validated-streams/blob/main/vstreams/src/proofs/tests.rs) and ['events'](https://github.com/comrade-coop/validated-streams/blob/main/vstreams/src/events/tests.rs) seem to point at invalid urls. Presumably these links are outdated with the recent changes (i.e., renaming 'vstream' to 'consensus_validated_streams', integration of 'proof'/'event' to the 'consensus' crate).
- Could not build benchmarks following the instruction (see Outstanding Issues).
|
| **0d.** | Docker | | [Main](https://github.com/comrade-coop/validated-streams/blob/64db1c20f561115f807f41c5da58bca7b3325d5a/Dockerfile)
[IRC](https://github.com/comrade-coop/validated-streams/blob/beb99456091f33f1f1b3cf6a555ff656c107e9cf/samples/irc/Dockerfile)
[Test script](https://github.com/comrade-coop/validated-streams/blob/main/scripts/run-example.sh)
[Benchmark](https://github.com/comrade-coop/validated-streams/blob/64db1c20f561115f807f41c5da58bca7b3325d5a/samples/tps-benchmark/Dockerfile) | - Again, [Test script](https://github.com/comrade-coop/validated-streams/blob/main/scripts/run-example.sh) seems to point at the old url. Shouldn't it be https://github.com/comrade-coop/validated-streams/tree/main/samples/basic/run_example.sh ?
- Also path to the stream.proto should be corrected (in run_example.sh) if we intend to use the same sample solution as in M1 for the integration test
|
| **0e.** | Article | |[Google Docs link](https://docs.google.com/document/u/1/d/12EsVUDydsDWfngQP6-zYRiC-dFbn696Evr3VSxgcpjU/edit) | --
| 1. | Substrate module: Witnessed events block import | |[Old](https://github.com/comrade-coop/validated-streams/blob/fa7e20c5f0bf34cd8b89f975eceb6e29955202ab/node/src/streams/services/witness_block_import.rs)
[New](https://github.com/comrade-coop/validated-streams/blob/9d1dd933395f9cca69834ccb43b3330922d531c4/consensus/src/block_import.rs) | The new implementation matches the description in delivery documentation. |