From 4fa902c84f0794ab4994a97b7a0102baf057f1ca Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Thu, 1 Jul 2021 16:31:11 +0900 Subject: [PATCH] Fix typo --- runtime/src/system_instruction_processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/system_instruction_processor.rs b/runtime/src/system_instruction_processor.rs index e63a70b6c8..039105300f 100644 --- a/runtime/src/system_instruction_processor.rs +++ b/runtime/src/system_instruction_processor.rs @@ -121,7 +121,7 @@ fn assign( } // bpf programs are allowed to do this; so this is inconsistent... - // Thus, we're starting to remove this restricition from system instruction + // Thus, we're starting to remove this restriction from system instruction // processor for consistency and fewer special casing by piggybacking onto // the related feature gate.. let rent_for_sysvars = invoke_context.is_feature_active(&feature_set::rent_for_sysvars::id());