Skip to content

Commit

Permalink
Clean up relay v3
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Oct 23, 2024
1 parent d4fbf59 commit c5df031
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/controllers/relayedController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,4 @@ export class RelayedController {

return transaction;
}

async createRelayedV3Transaction(
sender: IAccount,
nonce: bigint,
innerTransactions: ITransaction[],
): Promise<Transaction> {
const transaction = this.factory.createRelayedV3Transaction({
relayerAddress: sender.address,
innerTransactions,
});

transaction.nonce = nonce;
transaction.signature = await sender.sign(this.txComputer.computeBytesForSigning(transaction));

return transaction;
}
}

0 comments on commit c5df031

Please sign in to comment.