From 538fabcaf741b16ab18a7a413cd687fe7e80d8b5 Mon Sep 17 00:00:00 2001 From: gator-boi Date: Fri, 1 Mar 2024 12:37:50 -0600 Subject: [PATCH] evm: forge fmt --- evm/script/ConfigureWormholeNtt.s.sol | 4 +--- evm/script/helpers/ParseNttConfig.sol | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/evm/script/ConfigureWormholeNtt.s.sol b/evm/script/ConfigureWormholeNtt.s.sol index 65a864ae8..097809e3f 100644 --- a/evm/script/ConfigureWormholeNtt.s.sol +++ b/evm/script/ConfigureWormholeNtt.s.sol @@ -72,9 +72,7 @@ contract ConfigureWormholeNtt is ParseNttConfig { } else { // Set peer. nttManager.setPeer( - targetConfig.chainId, - targetConfig.nttManager, - targetConfig.decimals + targetConfig.chainId, targetConfig.nttManager, targetConfig.decimals ); console2.log("Peer set for chain", targetConfig.chainId); diff --git a/evm/script/helpers/ParseNttConfig.sol b/evm/script/helpers/ParseNttConfig.sol index 1c622aa3c..ce420fe31 100644 --- a/evm/script/helpers/ParseNttConfig.sol +++ b/evm/script/helpers/ParseNttConfig.sol @@ -11,7 +11,7 @@ contract ParseNttConfig is Script { using stdJson for string; // NOTE: Forge expects any struct to be defined in alphabetical order if being used - // to parse JSON. + // to parse JSON. struct ChainConfig { uint16 chainId; uint8 decimals;