chore(testutil): remove unnecessary error check (#24107)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
Hoang Do
2025-03-24 09:35:09 -07:00
committed by GitHub
co-authored by Alex | Interchain Labs
parent 9b2e91fbf9
commit 85a33eb62b
+1 -5
View File
@@ -130,11 +130,7 @@ func NextBlock(app *runtime.App, ctx sdk.Context, jumpTime time.Duration) (sdk.C
Time: header.Time,
})
if err != nil {
return sdk.Context{}, err
}
return newCtx, err
return newCtx, nil
}
// SetupWithConfiguration initializes a new runtime.App. A Nop logger is set in runtime.App.