From e078abb57a6eea927944db92ff56a2c6b27b24b1 Mon Sep 17 00:00:00 2001 From: Kitipong Sirirueangsakul Date: Wed, 21 Feb 2024 16:25:03 +0700 Subject: [PATCH] Update x/oracle/abci.go --- x/oracle/abci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/oracle/abci.go b/x/oracle/abci.go index 6496a1bec..dc69c3a16 100644 --- a/x/oracle/abci.go +++ b/x/oracle/abci.go @@ -12,7 +12,7 @@ import ( func handleBeginBlock(ctx sdk.Context, req abci.RequestBeginBlock, k keeper.Keeper) { // Update rolling seed used for pseudorandom oracle provider selection. hash := req.GetHash() - // On the firsrt block in the test. it's possible to have empty hash. + // On the first block in the test. it's possible to have empty hash. if len(hash) > 0 { rollingSeed := k.GetRollingSeed(ctx) k.SetRollingSeed(ctx, append(rollingSeed[1:], hash[0]))