net-rs: align test cluster config with sim-rs reference values
Two config changes to make the smoke cluster behave like the sim-rs Linear-Leios reference scenarios rather than a stress test. 1. `[validation]` in mainnet.toml: switch RB-body validation cost from a flat `1000.0 ms` constant to sim-rs's `0.3539 ms + 2.151e-05 ms/byte` formula, and surface `tx_validation_ms = 0.6201` (matches sim-rs's amortised-Plutus `tx-validation-cpu-time-ms`). At 90 KiB max RB body the new constant is ~2.4 ms — 3-hop propagation now finishes well under the 3-slot pre-voting buffer, where the old 1 s/hop pushed RB adoption past the voting window and forced every non-producer voter into `WrongEB`. 2. `rb_generation_probability` in sample-cluster.toml: revert from `0.2` (cluster-wide ≈ 1 RB / 5 s) to the base-config `0.05` (≈ 1 RB / 20 s, mainnet-like). The high rate packed multiple RBs into each EB's voting window and meant the chain tip typically moved past the EB-referencing RB before quorum could gather, so no EB ever certified. Together these match sim-rs's empirical 40%-certification working point and let the cluster reach `RbCertifiedEb` end-to-end. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>