public Participant(string name, IRPCClient rpc, IWasabiHttpClientFactory httpClientFactory)
    {
        HttpClientFactory = httpClientFactory;

        Wallet = new TestWallet(name, rpc);
    }
 public void Setup()
 {
     _walletService = new TestWallet();
 }