mirror of
https://github.com/tendermint/tendermint.git
synced 2026-05-29 10:30:20 +00:00
rpc/account; fixed mempool tx filter bug; fixed iavl_tree persistence
bug
This commit is contained in:
@@ -119,7 +119,7 @@ func BasicCodecDecoder(r Unreader, n *int64, err *error) (o interface{}) {
|
||||
o = ReadTime(r, n, err)
|
||||
default:
|
||||
if *err != nil {
|
||||
panic(err)
|
||||
panic(*err)
|
||||
} else {
|
||||
panic(fmt.Sprintf("Unsupported type byte: %X", type_))
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@ func init() {
|
||||
log.SetHandler(
|
||||
log15.LvlFilterHandler(
|
||||
log15.LvlWarn,
|
||||
//log15.LvlDebug,
|
||||
logger.RootHandler(),
|
||||
),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user