From 1f4db004a388c0f7f2e35dbbde8aa3ba2780aca1 Mon Sep 17 00:00:00 2001 From: Jawad Tariq Date: Tue, 20 Feb 2024 10:32:31 -0500 Subject: [PATCH] fix: format Signed-off-by: Jawad Tariq --- contracts/topos-core/CodeHash.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/topos-core/CodeHash.sol b/contracts/topos-core/CodeHash.sol index 4b7d7aa..0c02da2 100644 --- a/contracts/topos-core/CodeHash.sol +++ b/contracts/topos-core/CodeHash.sol @@ -7,7 +7,7 @@ contract CodeHash { function getCodeHash(address contractAddr) public view returns (bytes32 codeHash) { // does not fail with wallet addresses if (contractAddr.codehash.length != 0) { - codeHash = contractAddr.codehash; + codeHash = contractAddr.codehash; } } }