mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-02-08 04:11:08 +03:00
Fix keybase adapter (#107)
This commit is contained in:
parent
e25c93161e
commit
94aee6f742
1 changed files with 1 additions and 3 deletions
|
@ -388,9 +388,7 @@ impl WalletCommAdapter for KeybaseWalletCommAdapter {
|
||||||
match res {
|
match res {
|
||||||
// Reply to the same channel with topic SLATE_SIGNED
|
// Reply to the same channel with topic SLATE_SIGNED
|
||||||
Ok(s) => {
|
Ok(s) => {
|
||||||
let slate =
|
let success = send(s, channel, SLATE_SIGNED, TTL);
|
||||||
serde_json::to_string(&s).map_err(|_| ErrorKind::SlateSer)?;
|
|
||||||
let success = send(slate, channel, SLATE_SIGNED, TTL);
|
|
||||||
|
|
||||||
if success {
|
if success {
|
||||||
notify_on_receive(
|
notify_on_receive(
|
||||||
|
|
Loading…
Reference in a new issue