fix: remove some duplicate words (#20605)

This commit is contained in:
TinyFoxy 2024-06-10 17:07:31 +08:00 committed by GitHub
parent e799965ec8
commit d7105af506
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View File

@ -34,7 +34,7 @@ type MsgClient interface {
// TripCircuitBreaker pauses processing of Msg's in the state machine.
TripCircuitBreaker(ctx context.Context, in *MsgTripCircuitBreaker, opts ...grpc.CallOption) (*MsgTripCircuitBreakerResponse, error)
// ResetCircuitBreaker resumes processing of Msg's in the state machine that
// have been been paused using TripCircuitBreaker.
// have been paused using TripCircuitBreaker.
ResetCircuitBreaker(ctx context.Context, in *MsgResetCircuitBreaker, opts ...grpc.CallOption) (*MsgResetCircuitBreakerResponse, error)
}

View File

@ -48,7 +48,7 @@ type SystemUnderTest struct {
outputDir string
testnetInitializer TestnetInitializer
// blockTime is the the expected/desired block time. This is not going to be very precise
// blockTime is the expected/desired block time. This is not going to be very precise
// since Tendermint consensus does not allow specifying it directly.
blockTime time.Duration
rpcAddr string

View File

@ -64,7 +64,7 @@ type AccountAbstractionKeeper interface {
// gas for signature verification.
//
// In cases where unordered or parallel transactions are desired, it is recommended
// to to set unordered=true with a reasonable timeout_height value, in which case
// to set unordered=true with a reasonable timeout_height value, in which case
// this nonce verification and increment will be skipped.
//
// CONTRACT: Tx must implement SigVerifiableTx interface

View File

@ -134,7 +134,7 @@ func (srv msgServer) TripCircuitBreaker(ctx context.Context, msg *types.MsgTripC
}
// ResetCircuitBreaker resumes processing of Msg's in the state machine that
// have been been paused using TripCircuitBreaker.
// have been paused using TripCircuitBreaker.
func (srv msgServer) ResetCircuitBreaker(ctx context.Context, msg *types.MsgResetCircuitBreaker) (*types.MsgResetCircuitBreakerResponse, error) {
keeper := srv.Keeper
address, err := srv.addressCodec.StringToBytes(msg.Authority)

View File

@ -18,7 +18,7 @@ service Msg {
rpc TripCircuitBreaker(MsgTripCircuitBreaker) returns (MsgTripCircuitBreakerResponse);
// ResetCircuitBreaker resumes processing of Msg's in the state machine that
// have been been paused using TripCircuitBreaker.
// have been paused using TripCircuitBreaker.
rpc ResetCircuitBreaker(MsgResetCircuitBreaker) returns (MsgResetCircuitBreakerResponse);
}

View File

@ -406,7 +406,7 @@ type MsgClient interface {
// TripCircuitBreaker pauses processing of Msg's in the state machine.
TripCircuitBreaker(ctx context.Context, in *MsgTripCircuitBreaker, opts ...grpc.CallOption) (*MsgTripCircuitBreakerResponse, error)
// ResetCircuitBreaker resumes processing of Msg's in the state machine that
// have been been paused using TripCircuitBreaker.
// have been paused using TripCircuitBreaker.
ResetCircuitBreaker(ctx context.Context, in *MsgResetCircuitBreaker, opts ...grpc.CallOption) (*MsgResetCircuitBreakerResponse, error)
}

View File

@ -113,7 +113,7 @@ To export the simulation app state (i.e genesis) to a file:
# Params
Params that are provided to simulation from a JSON file are used to used to set
Params that are provided to simulation from a JSON file are used to set
both module parameters and simulation parameters. See sim_test.go for the full
set of parameters that can be provided.
*/