Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rosepuppy committed Oct 24, 2024
1 parent 89059bf commit 2ab7341
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions v4-client-js/src/clients/modules/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ export class Post {
subaccount: SubaccountInfo,
affiliate: string,
broadcastMode?: BroadcastMode,
gasAdjustment?: number,
gasAdjustment: number = 2,
): Promise<BroadcastTxAsyncResponse | BroadcastTxSyncResponse | IndexedTx> {
const msg = this.registerAffiliateMsg(subaccount.address, affiliate);
return this.send(
Expand All @@ -910,7 +910,7 @@ export class Post {
undefined,
broadcastMode,
undefined,
gasAdjustment ?? 2,
gasAdjustment,
);
}

Expand Down

0 comments on commit 2ab7341

Please sign in to comment.