Foreign API documentation and small cleanup (#31)

* verify slate messages documentation

* rustfmt

* foreign API documentation

* rustfmt
This commit is contained in:
Yeastplume
2019-03-29 08:46:12 +00:00
committed by GitHub
parent f756b10d78
commit 7b8fe92f53
13 changed files with 360 additions and 88 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ where
let mut w = wallet.1.lock();
w.open_with_credentials()?;
// receive tx
foreign::receive_tx(&mut *w, &mut slate, None, None, false)?;
slate = foreign::receive_tx(&mut *w, &slate, None, None, false)?;
w.close()?;
}