(&self)
| 288 | async fn get_minimum_stake(&self) -> RpcResult<u64> { |
| 289 | let minimum_stake = self.state_query.get_minimum_stake().await; |
| 290 | Ok(minimum_stake) |
| 291 | } |
| 292 | |
| 293 | async fn get_maximum_stake(&self) -> RpcResult<u64> { |
| 294 | let maximum_stake = self.state_query.get_maximum_stake().await; |
| 295 | Ok(maximum_stake) |
| 296 | } |
no outgoing calls