@@ -31,7 +31,6 @@ contract AxelarHookTest is Test {
3131    string  destionationContract =  "neutronContract " ;
3232    address  axelarGateway =  address (0 );
3333    address  axelarGasReceiver =  address (0 );
34-     bytes  gmp_call_code =  abi.encodePacked (uint8 (1 ));
3534    error BadQuote  (uint256  balance , uint256  required );
3635
3736    function setUp  () public  {
@@ -42,8 +41,7 @@ contract AxelarHookTest is Test {
4241            destinationChain,
4342            destionationContract,
4443            axelarGateway,
45-             axelarGasReceiver,
46-             gmp_call_code
44+             axelarGasReceiver
4745        );
4846        testMessage =  _encodeTestMessage ();
4947    }
@@ -66,7 +64,7 @@ contract AxelarHookTest is Test {
6664        vm.expectRevert ("No Axelar Payment Received " );
6765        uint256  expectedQuote =  0 ;
6866        bytes  memory  justRightCustomMetadata =  BridgeAggregationHookMetadata
69-             .formatMetadata (expectedQuote, 0 ,  abi.encodePacked ());
67+             .formatMetadata (expectedQuote, abi.encodePacked ());
7068        bytes  memory  testMetadata =  StandardHookMetadata.formatMetadata (
7169            100 ,
7270            100 ,
@@ -80,7 +78,7 @@ contract AxelarHookTest is Test {
8078    function test_quoteDispatch_ReturnsSmallQuote  () public  {
8179        uint256  expectedQuote =  1 ;
8280        bytes  memory  justRightCustomMetadata =  BridgeAggregationHookMetadata
83-             .formatMetadata (expectedQuote, 0 ,  abi.encodePacked ());
81+             .formatMetadata (expectedQuote, abi.encodePacked ());
8482        bytes  memory  testMetadata =  StandardHookMetadata.formatMetadata (
8583            100 ,
8684            100 ,
@@ -96,7 +94,7 @@ contract AxelarHookTest is Test {
9694        // type(uint256).max = 115792089237316195423570985008687907853269984665640564039457584007913129639935. that's a big quote 
9795        uint256  expectedQuote =  type (uint256 ).max;
9896        bytes  memory  justRightCustomMetadata =  BridgeAggregationHookMetadata
99-             .formatMetadata (expectedQuote, 0 ,  abi.encodePacked ());
97+             .formatMetadata (expectedQuote, abi.encodePacked ());
10098        bytes  memory  testMetadata =  StandardHookMetadata.formatMetadata (
10199            100 ,
102100            100 ,
0 commit comments