@@ -32,7 +32,7 @@ describe('EVM Coin Utils', function () {
3232 } ,
3333 } ;
3434
35- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
35+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
3636
3737 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
3838
@@ -49,7 +49,7 @@ describe('EVM Coin Utils', function () {
4949
5050 const mockResponse = { } ;
5151
52- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
52+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
5353
5454 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
5555
@@ -64,7 +64,7 @@ describe('EVM Coin Utils', function () {
6464 address : mockAddress ,
6565 } ;
6666
67- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 500 , 'Internal Server Error' ) ;
67+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 500 , 'Internal Server Error' ) ;
6868
6969 try {
7070 await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
@@ -88,7 +88,7 @@ describe('EVM Coin Utils', function () {
8888 ethereum_nonce : 42 ,
8989 } ;
9090
91- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
91+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
9292
9393 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
9494
@@ -105,7 +105,7 @@ describe('EVM Coin Utils', function () {
105105
106106 const mockResponse = { } ;
107107
108- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
108+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
109109
110110 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
111111
0 commit comments