rpc: remove p2p.set_outbound_connections method

This commit is contained in:
jkds
2025-12-31 04:07:56 +01:00
parent b60d550a3f
commit 19c1b8ffea
4 changed files with 1 additions and 92 deletions

View File

@@ -76,9 +76,6 @@ class JsonRpc:
async def get_info(self):
return await self._make_request("p2p.get_info", [])
async def set_outbound_connections(self, n):
return await self._make_request("p2p.set_outbound_connections", [n])
async def main(argv):
rpc = JsonRpc()
while True: