Skip to content

Commit

Permalink
Fix type issues related to telescope
Browse files Browse the repository at this point in the history
  • Loading branch information
mattupham committed Sep 18, 2024
1 parent 1bc3082 commit 3c1bd68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/stores/src/account/osmosis/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1698,7 +1698,7 @@ export class OsmosisAccountImpl {
lockIds.map(async (lockId) => {
return makeBeginUnlockingMsg({
owner: this.address,
ID: BigInt(lockId),
iD: BigInt(lockId),
coins: [],
});
})
Expand Down Expand Up @@ -1754,7 +1754,7 @@ export class OsmosisAccountImpl {
msgs.push(
await makeBeginUnlockingMsg({
owner: this.address,
ID: BigInt(lock.lockId),
iD: BigInt(lock.lockId),
coins: [],
})
);
Expand Down
4 changes: 2 additions & 2 deletions packages/tx/src/message-composers/osmosis/lockup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ export async function makeLockTokensMsg({

export async function makeBeginUnlockingMsg({
owner,
ID,
iD,
coins,
}: MsgBeginUnlocking) {
const osmosis = await getOsmosisCodec();
return osmosis.lockup.MessageComposer.withTypeUrl.beginUnlocking({
owner,
ID,
iD,
coins,
});
}

0 comments on commit 3c1bd68

Please sign in to comment.