fix: types

This commit is contained in:
Danil Kovtonyuk 2021-09-13 23:37:48 +10:00 committed by 0xZick
parent 3b0a8631ed
commit 2cf40019e0
1 changed files with 4 additions and 4 deletions

View File

@ -17,6 +17,8 @@ import { ChainId } from '@/types';
export type ExtData = {
recipient: string;
relayer: string;
fee: BigNumberish;
extAmount: BigNumberish;
encryptedOutput1: BytesLike;
encryptedOutput2: BytesLike;
};
@ -28,8 +30,6 @@ export type ArgsProof = {
inputNullifiers: string[];
outputCommitments: BytesLike[];
outPathIndices: string;
extAmount: BigNumberish;
fee: BigNumberish;
extDataHash: string;
};
@ -61,9 +61,9 @@ export class TransactionProcessor extends BaseProcessor<Transaction> {
try {
await job.isActive();
const { args, amount } = job.data;
const { extData, amount } = job.data;
await this.checkFee({ fee: args[6], amount });
await this.checkFee({ fee: extData.fee, amount });
await this.submitTx(job);
} catch (err) {
await job.moveToFailed(err, true);