@@ -1109,7 +1109,7 @@ describe('ETH:', function () {
1109
1109
should . exist ( consolidationResult ) ;
1110
1110
const unsignedBuilConsolidation = consolidationResult as UnsignedBuilConsolidation ;
1111
1111
unsignedBuilConsolidation . should . have . property ( 'transactions' ) ;
1112
- unsignedBuilConsolidation . transactions . should . have . length ( 2 ) ;
1112
+ unsignedBuilConsolidation . transactions . should . have . length ( 1 ) ;
1113
1113
1114
1114
const output = unsignedBuilConsolidation . transactions [ 0 ] as MPCSweepTxs ;
1115
1115
output . should . have . property ( 'txRequests' ) ;
@@ -1162,6 +1162,7 @@ describe('ETH:', function () {
1162
1162
gasLimit : 200000 , // Gas Limit
1163
1163
eip1559 : { maxFeePerGas : 20000000000 , maxPriorityFeePerGas : 10000000000 } , // Max Fee Per Gas and Max Priority Fee Per Gas
1164
1164
isTss : true ,
1165
+ walletContractAddress : '123' , // Wrong wallet address so that we can skip v5 address generation
1165
1166
replayProtectionOptions : {
1166
1167
chain : '42' ,
1167
1168
hardfork : 'london' ,
@@ -1173,7 +1174,7 @@ describe('ETH:', function () {
1173
1174
should . exist ( consolidationResult ) ;
1174
1175
const unsignedBuilConsolidation = consolidationResult as UnsignedBuilConsolidation ;
1175
1176
unsignedBuilConsolidation . should . have . property ( 'transactions' ) ;
1176
- unsignedBuilConsolidation . transactions . should . have . length ( 2 ) ;
1177
+ unsignedBuilConsolidation . transactions . should . have . length ( 1 ) ;
1177
1178
1178
1179
const output = unsignedBuilConsolidation . transactions [ 0 ] as MPCSweepTxs ;
1179
1180
output . should . have . property ( 'txRequests' ) ;
0 commit comments