Skip to content

Commit

Permalink
feat(billing): simulate tx to estimate fees on master wallet
Browse files Browse the repository at this point in the history
closes #426
  • Loading branch information
ygrishajev committed Dec 13, 2024
1 parent 5c1b9ef commit ac03012
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class MasterSigningClientService {

while (txIndex < inputs.length) {
const { messages, options } = inputs[txIndex];
const fee = await this.estimateFee(messages, this.FEES_DENOM, options?.fee.granter, { mock: true });
const fee = await this.estimateFee(messages, this.FEES_DENOM, options?.fee.granter);
txes.push(
await client.sign(masterAddress, messages, fee, "", {
accountNumber: this.accountInfo.accountNumber,
Expand Down

0 comments on commit ac03012

Please sign in to comment.