Rename inner to client

This commit is contained in:
Philipp Hoenisch 2020-11-03 11:49:53 +11:00
parent f0fbe785c8
commit 1a38bf57f2
No known key found for this signature in database
GPG key ID: E5F8E74C672BC666
5 changed files with 17 additions and 19 deletions

View file

@ -135,8 +135,8 @@ pub async fn init_test(
.await
.unwrap();
let alice_monero_wallet = wallet::monero::Wallet(monero.wallet("alice").unwrap().inner());
let bob_monero_wallet = wallet::monero::Wallet(monero.wallet("bob").unwrap().inner());
let alice_monero_wallet = wallet::monero::Wallet(monero.wallet("alice").unwrap().client());
let bob_monero_wallet = wallet::monero::Wallet(monero.wallet("bob").unwrap().client());
let alice_btc_wallet = wallet::bitcoin::Wallet::new("alice", &bitcoind.node_url)
.await