diff --git a/frontend/decentralized-reputation-system/package-lock.json b/frontend/decentralized-reputation-system/package-lock.json index 39fa993..329acf6 100644 --- a/frontend/decentralized-reputation-system/package-lock.json +++ b/frontend/decentralized-reputation-system/package-lock.json @@ -1853,9 +1853,9 @@ } }, "node_modules/@types/react": { - "version": "19.1.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.14.tgz", - "integrity": "sha512-ukd93VGzaNPMAUPy0gRDSC57UuQbnH9Kussp7HBjM06YFi9uZTFhOvMSO2OKqXm1rSgzOE+pVx1k1PYHGwlc8Q==", + "version": "19.1.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.15.tgz", + "integrity": "sha512-+kLxJpaJzXybyDyFXYADyP1cznTO8HSuBpenGlnKOAkH4hyNINiywvXS/tGJhsrGGP/gM185RA3xpjY0Yg4erA==", "devOptional": true, "dependencies": { "csstype": "^3.0.2" @@ -6334,9 +6334,9 @@ } }, "node_modules/viem": { - "version": "2.37.8", - "resolved": "https://registry.npmjs.org/viem/-/viem-2.37.8.tgz", - "integrity": "sha512-mL+5yvCQbRIR6QvngDQMfEiZTfNWfd+/QL5yFaOoYbpH3b1Q2ddwF7YG2eI2AcYSh9LE1gtUkbzZLFUAVyj4oQ==", + "version": "2.37.9", + "resolved": "https://registry.npmjs.org/viem/-/viem-2.37.9.tgz", + "integrity": "sha512-XXUOE5yJcjr9/M9kRoQcPMUfetwHprO9aTho6vNELjBKJIBx7rYq1fjvBw+xEnhsRjhh5lsORi6B0h8fYFB7NA==", "funding": [ { "type": "github", diff --git a/src/onchain/TestReputationRegistry.sol b/src/onchain/TestReputationRegistry.sol index ff6ff3a..f33979b 100644 --- a/src/onchain/TestReputationRegistry.sol +++ b/src/onchain/TestReputationRegistry.sol @@ -28,9 +28,6 @@ contract TestReputationRegistry { event UserRegistered(address indexed user, uint256 initialReputation); event ReputationUpdated(address indexed user, uint256 oldScore, uint256 newScore, address indexed rater); - constructor() { - } - /** * @dev Register a new user (anyone can call) * @param user Address of the user to register