## Week 3 and 4 This week’s primary goal was to finish the issue I had taken up, which involves preventing repeated CLI arguments from allowing the node to start. I have almost completed it. Just need to write unit tests before submitting a PR. The issue I am facing is that when using boolean commands like besu **---privacy-enabled=true ---privacy-enabled=false**, the Besu node still starts. For single-value types (not arrays, sets, or lists), the last specified value overrides the previous one and is used. We expect it to throw an error if the same argument is specified more than once. ![Screenshot 2025-07-16 at 8.05.07 PM](https://hackmd.io/_uploads/HkJC11nIxl.png) Apart from this, I have also been researching EIP-7639, which is a project from the Besu team. Links: * [Issue I’m working on](https://github.com/hyperledger/besu/issues/8505) * [PR I’ve submitted](https://github.com/hyperledger/besu/pull/8898) ## Next Steps * My goal for the coming week is to complete and close the above PR and continue researching EIP-7639