From 5e64560b03cfdf14baf7862b0cf627e4f2f85d51 Mon Sep 17 00:00:00 2001 From: Sam Uwe Alws Date: Thu, 23 Feb 2023 13:10:38 -0500 Subject: [PATCH] Fix broken links on site --- not-so-smart-contracts/substrate/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/not-so-smart-contracts/substrate/README.md b/not-so-smart-contracts/substrate/README.md index 9896200b..19bd2dee 100644 --- a/not-so-smart-contracts/substrate/README.md +++ b/not-so-smart-contracts/substrate/README.md @@ -16,16 +16,16 @@ Each _Not So Smart Pallet_ includes a standard set of information: | Not So Smart Pallet | Description | | --- | --- | -| [Arithmetic overflow](./arithmetic_overflow/README.md) | Integer overflow due to incorrect use of arithmetic operators | -| [Don't panic!](./dont_panic/README.md) | System panics create a potential DoS attack vector | -| [Weights and fees](./weights_and_fees/README.md) | Incorrect weight calculations can create a potential DoS attack vector | -| [Verify first](./verify_first/README.md) | Verify first, write last | -| [Unsigned transaction validation](./validate_unsigned/README.md) | Insufficient validation of unsigned transactions | -| [Bad randomness](./randomness/README.md) | Unsafe sources of randomness in Substrate | -| [Bad origin](./origins/README.md) | Incorrect use of call origin can lead to bypassing access controls | +| [Arithmetic overflow](arithmetic_overflow) | Integer overflow due to incorrect use of arithmetic operators | +| [Don't panic!](dont_panic) | System panics create a potential DoS attack vector | +| [Weights and fees](weights_and_fees) | Incorrect weight calculations can create a potential DoS attack vector | +| [Verify first](verify_first) | Verify first, write last | +| [Unsigned transaction validation](validate_unsigned) | Insufficient validation of unsigned transactions | +| [Bad randomness](randomness) | Unsafe sources of randomness in Substrate | +| [Bad origin](origins) | Incorrect use of call origin can lead to bypassing access controls | ## Credits These examples are developed and maintained by [Trail of Bits](https://www.trailofbits.com/). -If you have questions, problems, or just want to learn more, then join the #ethereum channel on the [Empire Hacking Slack](https://empireslacking.herokuapp.com/) or [contact us](https://www.trailofbits.com/contact/) directly. \ No newline at end of file +If you have questions, problems, or just want to learn more, then join the #ethereum channel on the [Empire Hacking Slack](https://empireslacking.herokuapp.com/) or [contact us](https://www.trailofbits.com/contact/) directly.