File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/contract-helpers/src/commons Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ describe('gasStation', () => {
4242 const gas = await estimateGasByNetwork ( tx , provider , 10 ) ;
4343 expect ( gas ) . toEqual ( BigNumber . from ( 110 ) ) ;
4444 } ) ;
45- it ( 'Expects to return 230000 for zksync when connected with contract address' , async ( ) => {
45+ it ( 'Expects to return 350000 for zksync when connected with contract address' , async ( ) => {
4646 jest
4747 . spyOn ( provider , 'getNetwork' )
4848 . mockImplementationOnce ( async ( ) =>
@@ -54,7 +54,7 @@ describe('gasStation', () => {
5454 . mockImplementationOnce ( async ( ) => Promise . resolve ( '0x1234' ) ) ;
5555
5656 const gas = await estimateGasByNetwork ( { from : '0x123abc' } , provider ) ;
57- expect ( gas ) . toEqual ( BigNumber . from ( 230000 ) ) ;
57+ expect ( gas ) . toEqual ( BigNumber . from ( 350000 ) ) ;
5858 } ) ;
5959 it ( 'Expects to return default for zksync when connected with EOA' , async ( ) => {
6060 jest
You can’t perform that action at this time.
0 commit comments