From 4cc1a0a4dbb8e187eb5ee223081e31540d461f00 Mon Sep 17 00:00:00 2001 From: Shahul Hameed <10547529+shahthepro@users.noreply.github.com> Date: Wed, 24 Apr 2024 20:47:11 +0530 Subject: [PATCH] Fix comment --- contracts/Migrator.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/Migrator.sol b/contracts/Migrator.sol index 3aa1a8b9..3d9f1937 100644 --- a/contracts/Migrator.sol +++ b/contracts/Migrator.sol @@ -105,8 +105,8 @@ contract Migrator is Governable { // OGN doesn't allow burning of tokens. Has `onlyOwner` // modifier on `burn` and `burnFrom` methods. Also, // `transfer` has a address(0) check. So, this transfers - // everything to address(1). The `owner` multisig of - // OGN token can call `burnFrom(address(1))` later.abi + // everything to address(0xdead). The `owner` multisig of + // OGN token can call `burnFrom(address(0xdead))` later. ogn.transfer(address(0xdead), ognBalance); }