mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-28 12:11:44 +00:00
small fixes
This commit is contained in:
@ -24,4 +24,4 @@ USER tendermint
|
||||
ENV USER tendermint
|
||||
ENV TMROOT /tendermint_root
|
||||
# docker run -v $(pwd)/tendermint_root:/tendermint_root
|
||||
CMD [ "./tendermint", "daemon" ]
|
||||
CMD [ "./build/tendermint", "node" ]
|
||||
|
@ -44,11 +44,11 @@ func ListAccounts() (*ctypes.ResponseListAccounts, error) {
|
||||
return &ctypes.ResponseListAccounts{blockHeight, accounts}, nil
|
||||
}
|
||||
|
||||
func DumpStorage(addr []byte) (*ctypes.ResponseDumpStorage, error) {
|
||||
func DumpStorage(address []byte) (*ctypes.ResponseDumpStorage, error) {
|
||||
state := consensusState.GetState()
|
||||
account := state.GetAccount(addr)
|
||||
account := state.GetAccount(address)
|
||||
if account == nil {
|
||||
return nil, fmt.Errorf("Unknown address: %X", addr)
|
||||
return nil, fmt.Errorf("Unknown address: %X", address)
|
||||
}
|
||||
storageRoot := account.StorageRoot
|
||||
storageTree := state.LoadStorage(storageRoot)
|
||||
|
Reference in New Issue
Block a user