From 3a44e960aebb491c19876eb5187e9bd95ed86f43 Mon Sep 17 00:00:00 2001
From: calebcheng00 <50129617+calebcheng00@users.noreply.github.com>
Date: Thu, 21 Oct 2021 14:59:05 +0800
Subject: [PATCH 1/2] Add SPDX-License-Identifier to math.sol
Not sure if there's a reason it doesn't have one.
---
src/math.sol | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/math.sol b/src/math.sol
index 5ea5761..034b116 100644
--- a/src/math.sol
+++ b/src/math.sol
@@ -13,6 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
+// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >0.4.13;
contract DSMath {
From 45974fd8db640820a17eb2a422f718ed39a8b333 Mon Sep 17 00:00:00 2001
From: calebcheng00 <50129617+calebcheng00@users.noreply.github.com>
Date: Thu, 21 Oct 2021 15:00:25 +0800
Subject: [PATCH 2/2] Also add SPDX-License-Identifier to test
---
src/math.t.sol | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/math.t.sol b/src/math.t.sol
index c82b763..9a83152 100644
--- a/src/math.t.sol
+++ b/src/math.t.sol
@@ -11,6 +11,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
+// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >0.4.13;
import "ds-test/test.sol";