17 lines
412 B
Go
17 lines
412 B
Go
package app
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// initCapKeys, initBaseApp, initStores, initHandlers.
|
|
func (app *BasecoinApp) initCapKeys() {
|
|
|
|
// All top-level capabilities keys
|
|
// should be constructed here.
|
|
// For more information, see http://www.erights.org/elib/capability/ode/ode.pdf.
|
|
app.capKeyMainStore = sdk.NewKVStoreKey("main")
|
|
app.capKeyIBCStore = sdk.NewKVStoreKey("ibc")
|
|
|
|
}
|