mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
9c69ee2fbf
* use kava antehandler * add authenticated mempool decorator * add get authorised address methods * hook antehandler into app * refactor address fetcher interface * tidy up args to NewApp * remove unused function * tidy up after removing address fetcher interface * read authorized addresses from config * fix error message, and minor tidy * update cosmos-sdk and tendermint * clarify function name * add flags for mempool options
18 lines
486 B
Modula-2
18 lines
486 B
Modula-2
module github.com/kava-labs/kava
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/cosmos/cosmos-sdk v0.39.2
|
|
github.com/gorilla/mux v1.7.4
|
|
github.com/spf13/cobra v1.0.0
|
|
github.com/spf13/viper v1.6.3
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/tendermint/tendermint v0.33.9
|
|
github.com/tendermint/tm-db v0.5.1
|
|
gopkg.in/yaml.v2 v2.3.0
|
|
)
|
|
|
|
// patch bech32 decoding to enable larger string lengths
|
|
replace github.com/btcsuite/btcutil => github.com/kava-labs/btcutil v0.0.0-20200522184203-886d33430f06
|