mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 03:21: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 {
|
||||
// Reply to the same channel with topic SLATE_SIGNED
|
||||
Ok(s) => {
|
||||
let slate =
|
||||
serde_json::to_string(&s).map_err(|_| ErrorKind::SlateSer)?;
|
||||
let success = send(slate, channel, SLATE_SIGNED, TTL);
|
||||
let success = send(s, channel, SLATE_SIGNED, TTL);
|
||||
|
||||
if success {
|
||||
notify_on_receive(
|
||||
|
|
Loading…
Reference in a new issue