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 23:35:09 +07:00 committed by GitHub
parent 9b2e91fbf9
commit 85a33eb62b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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.