Skip to content

Commit

Permalink
Fix keybase adapter (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspervdm authored and yeastplume committed May 16, 2019
1 parent e25c931 commit 94aee6f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions impls/src/adapters/keybase.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 94aee6f

Please sign in to comment.