diff --git a/typescript/test/utils/mock-bridge.ts b/typescript/test/utils/mock-bridge.ts index f3b06c658..d342357c2 100644 --- a/typescript/test/utils/mock-bridge.ts +++ b/typescript/test/utils/mock-bridge.ts @@ -43,13 +43,6 @@ interface RedemptionProofLogEntry { walletPublicKey: string } -interface BuildRedemptionDataLogEntry { - redeemer: Identifier - walletPublicKey: string - mainUtxo: UnspentTransactionOutput - redeemerOutputScript: string -} - /** * Mock Bridge used for test purposes. */ @@ -63,7 +56,6 @@ export class MockBridge implements Bridge { private _redemptionProofLog: RedemptionProofLogEntry[] = [] private _deposits = new Map() private _activeWalletPublicKey: string | undefined - private _buildRedemptionDataLog: BuildRedemptionDataLogEntry[] = [] setPendingRedemptions(value: Map) { this._pendingRedemptions = value @@ -89,10 +81,6 @@ export class MockBridge implements Bridge { return this._redemptionProofLog } - get buildRedemptionDataLog(): BuildRedemptionDataLogEntry[] { - return this._buildRedemptionDataLog - } - setDeposits(value: Map) { this._deposits = value }