fbarbu15 810468a57f
test_: create private group tests (#6225)
* test_: create private group tests

* test_: set privileged False for jenkins

* test_: run baseline tests in rpc suite

* test_: address review comments

* test_: address review comments
2024-12-20 13:08:11 +02:00

16 lines
430 B
Python

from clients.rpc import RpcClient
from clients.services.service import Service
class AccountService(Service):
def __init__(self, client: RpcClient):
super().__init__(client, "accounts")
def get_accounts(self):
response = self.rpc_request("getAccounts")
return response.json()
def get_account_keypairs(self):
response = self.rpc_request("getKeypairs")
return response.json()