Skip to content

Commit

Permalink
fix: don't return error in getinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya committed Jan 4, 2024
1 parent 85fbfef commit 52a17e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strike.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (*StrikeOAuthService) GetInfo(ctx context.Context, senderPubkey string) (in
Network: "mainnet",
BlockHeight: 0,
BlockHash: "",
}, errors.New("not implemented")
}, nil
}

func (*StrikeOAuthService) SendKeysend(ctx context.Context, senderPubkey string, amount int64, destination string, preimage string, custom_records []TLVRecord) (preImage string, err error) {
Expand Down

0 comments on commit 52a17e9

Please sign in to comment.