Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Cosmos JS #1795

Merged
9 commits merged into from Mar 9, 2022
4 changes: 2 additions & 2 deletions src/families/cosmos/js-signOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ const signOperation = ({
? "REWARD"
: "OUT";

const senders: string[] = [account.freshAddress];
const recipients: string[] = [transaction.recipient];
const senders: string[] = [];
const recipients: string[] = [];

if (transaction.mode === "send") {
senders.push(account.freshAddress);
Expand Down