rpc/account; fixed mempool tx filter bug; fixed iavl_tree persistence

bug
This commit is contained in:
Jae Kwon
2015-01-10 05:41:50 -08:00
parent 4a81b06b6e
commit fe566739fd
15 changed files with 171 additions and 14 deletions

View File

@ -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_))
}