Browse Source

Fix cashierdb tests.

parazyd 4 years ago
parent
commit
c889118566
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/wallet/cashierdb.rs

+ 2 - 2
src/wallet/cashierdb.rs

@@ -527,7 +527,7 @@ mod tests {
             &token_addr,
             &network,
             &token_id,
-            &String::new(),
+            String::new(),
         )?;
 
         let keys = wallet.get_deposit_token_keys_by_dkey_public(&public2, &network)?;
@@ -570,7 +570,7 @@ mod tests {
             &secret2,
             &network,
             &token_id,
-            &String::new(),
+            String::new(),
         )?;
 
         let addr = wallet.get_withdraw_keys_by_token_public_key(&token_addr, &network)?;