mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-29 04:31:44 +00:00
added DumpStorage RPC command
This commit is contained in:
@ -19,6 +19,16 @@ type ResponseListAccounts struct {
|
||||
Accounts []*account.Account
|
||||
}
|
||||
|
||||
type StorageItem struct {
|
||||
Key []byte
|
||||
Value []byte
|
||||
}
|
||||
|
||||
type ResponseDumpStorage struct {
|
||||
StorageRoot []byte
|
||||
StorageItems []StorageItem
|
||||
}
|
||||
|
||||
type ResponseBlockchainInfo struct {
|
||||
LastHeight uint
|
||||
BlockMetas []*types.BlockMeta
|
||||
|
Reference in New Issue
Block a user