From 43d9bc0a072eec3a6a487fb7707ecc6dfdfb341d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Tue, 25 Apr 2023 16:38:02 +0200 Subject: [PATCH] Add missing profile manager address to seeds --- scripts/create-proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create-proxy.js b/scripts/create-proxy.js index 44bfa03..e2aabf9 100644 --- a/scripts/create-proxy.js +++ b/scripts/create-proxy.js @@ -36,7 +36,7 @@ async function main() { const blocksVetoPeriod = 40320; // 7 days; 15 seconds block time - await deployContractProxy('Contributor'); + await deployContractProxy('Contributor', [ '0x0000000000000000000000000000000000000000' ] ); await deployContractProxy('Contribution', [ blocksVetoPeriod ]); await deployContractProxy('Token'); await deployContractProxy('Reimbursement');