fix: multiple typos of different importance (#25026)
Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
co-authored by
Alex | Interchain Labs
parent
b12485beb5
commit
e5a7389a98
@@ -48,7 +48,7 @@ func Compose(typ string, subAddresses []Addressable) ([]byte, error) {
|
||||
a := subAddresses[i].Address()
|
||||
as[i], err = LengthPrefix(a)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("not compatible sub-adddress=%v at index=%d [%w]", a, i, err)
|
||||
return nil, fmt.Errorf("not compatible sub-address=%v at index=%d [%w]", a, i, err)
|
||||
}
|
||||
totalLen += len(as[i])
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ type Mempool interface {
|
||||
Remove(sdk.Tx) error
|
||||
}
|
||||
|
||||
// ExtMempool is a extension of Mempool interface introduced in v0.50
|
||||
// ExtMempool is an extension of Mempool interface introduced in v0.50
|
||||
// for not be breaking in a patch release.
|
||||
// In v0.52+, this interface will be merged into Mempool interface.
|
||||
type ExtMempool interface {
|
||||
|
||||
@@ -143,4 +143,4 @@ graph TD
|
||||
|
||||
Mempool order: [10, 15, 30, 8, 20, 6, 4, 2, 90]
|
||||
|
||||
This case shows how the mempool handles a more complex graph with more priority edges between senders. Again we also demonstrate an idiosyncrasy of this nonce/priroity ordering scheme, tx(priority=90) is selected last because it is gated behind tx(priority=2) by nonce ordering.
|
||||
This case shows how the mempool handles a more complex graph with more priority edges between senders. Again we also demonstrate an idiosyncrasy of this nonce/priority ordering scheme, tx(priority=90) is selected last because it is gated behind tx(priority=2) by nonce ordering.
|
||||
|
||||
@@ -198,7 +198,7 @@ type HasABCIGenesis interface {
|
||||
|
||||
// AppModule is the form for an application module. Most of
|
||||
// its functionality has been moved to extension interfaces.
|
||||
// Deprecated: use appmodule.AppModule with a combination of extension interfaes interfaces instead.
|
||||
// Deprecated: use appmodule.AppModule with a combination of extension interfaces interfaces instead.
|
||||
type AppModule interface {
|
||||
appmodule.AppModule
|
||||
|
||||
|
||||
Reference in New Issue
Block a user