test-validator-bin: reinstate full rpc method set

This commit is contained in:
Trent Nelson
2022-02-02 15:46:16 -07:00
committed by mergify[bot]
parent ab02dba96f
commit c62f9839a2
3 changed files with 14 additions and 4 deletions

View File

@@ -230,9 +230,10 @@ impl Default for ValidatorConfig {
impl ValidatorConfig {
pub fn default_for_test() -> Self {
let mut config = Self::default();
config.rpc_config.full_api = true;
config
Self {
rpc_config: JsonRpcConfig::default_for_test(),
..Self::default()
}
}
}