From 4ab95d825aaeab6ba974450d180fcad6acfde4fc Mon Sep 17 00:00:00 2001 From: Ian Harvey Date: Tue, 26 Sep 2023 15:53:10 -0400 Subject: [PATCH] cleaned up grant fund script per Brian's request --- script/GrantFund.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/GrantFund.s.sol b/script/GrantFund.s.sol index 31b7da02..0a2a1049 100644 --- a/script/GrantFund.s.sol +++ b/script/GrantFund.s.sol @@ -22,6 +22,6 @@ contract DeployGrantFund is Script { vm.stopBroadcast(); console.log("GrantFund deployed to %s", grantFund); - console.log("Please transfer %s AJNA (%s WAD) into the treasury", treasury / 1e18, treasury); + console.log("Please transfer %s AJNA (%s WAD) to the treasury using the fundTreasury() method found in GrantFund.sol", treasury / 1e18, treasury); } }