Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/integrations/fb_signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export type AssetId =
| "ETH_TEST5"
| "ETH_TEST6"
| "ETH"
| "ATOM_COS_TEST"
| "ATOM_COS"
| "OSMO_TEST"
| "OSMO"
Expand Down
2 changes: 1 addition & 1 deletion src/services/atom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class AtomService extends Service {
};
const fbNote = note ? note : "ATOM tx from @kilnfi/sdk";
const signer = this.getFbSigner(integration);
const fbTx = await signer.sign(payload, this.testnet ? "ATOM_COS_TEST" : "ATOM_COS", fbNote);
const fbTx = await signer.sign(payload, "ATOM_COS", fbNote);
const signature: string = fbTx.signedMessages![0].signature.fullSig;
const { data } = await api.post<CosmosSignedTx>(`/v1/atom/transaction/prepare`, {
pubkey: tx.data.pubkey,
Expand Down