tendermint/rpc/core/accounts.go

68 lines
2.0 KiB
Go
Raw Normal View History

package core
import (
2015-03-31 14:08:21 -07:00
"fmt"
acm "github.com/tendermint/tendermint/account"
. "github.com/tendermint/go-common"
ctypes "github.com/tendermint/tendermint/rpc/core/types"
)
func GenPrivAccount() (*ctypes.ResultGenPrivAccount, error) {
return &ctypes.ResultGenPrivAccount{acm.GenPrivAccount()}, nil
}
2015-07-11 18:01:21 -07:00
// If the account is not known, returns nil, nil.
func GetAccount(address []byte) (*ctypes.ResultGetAccount, error) {
cache := mempoolReactor.Mempool.GetCache()
account := cache.GetAccount(address)
if account == nil {
2015-07-11 18:01:21 -07:00
return nil, nil
}
return &ctypes.ResultGetAccount{account}, nil
}
func GetStorage(address, key []byte) (*ctypes.ResultGetStorage, error) {
state := consensusState.GetState()
account := state.GetAccount(address)
if account == nil {
2015-07-11 18:01:21 -07:00
return nil, fmt.Errorf("UnknownAddress: %X", address)
}
storageRoot := account.StorageRoot
storageTree := state.LoadStorage(storageRoot)
2015-04-17 17:39:50 -07:00
_, value := storageTree.Get(LeftPadWord256(key).Bytes())
if value == nil {
return &ctypes.ResultGetStorage{key, nil}, nil
}
return &ctypes.ResultGetStorage{key, value.([]byte)}, nil
}
func ListAccounts() (*ctypes.ResultListAccounts, error) {
var blockHeight int
var accounts []*acm.Account
state := consensusState.GetState()
blockHeight = state.LastBlockHeight
state.GetAccounts().Iterate(func(key interface{}, value interface{}) bool {
accounts = append(accounts, value.(*acm.Account))
return false
})
return &ctypes.ResultListAccounts{blockHeight, accounts}, nil
}
2015-03-31 14:08:21 -07:00
func DumpStorage(address []byte) (*ctypes.ResultDumpStorage, error) {
2015-03-31 14:08:21 -07:00
state := consensusState.GetState()
2015-04-09 16:39:58 -07:00
account := state.GetAccount(address)
2015-03-31 14:08:21 -07:00
if account == nil {
2015-07-11 18:01:21 -07:00
return nil, fmt.Errorf("UnknownAddress: %X", address)
2015-03-31 14:08:21 -07:00
}
storageRoot := account.StorageRoot
2015-04-08 12:30:49 -07:00
storageTree := state.LoadStorage(storageRoot)
storageItems := []ctypes.StorageItem{}
2015-04-08 12:30:49 -07:00
storageTree.Iterate(func(key interface{}, value interface{}) bool {
storageItems = append(storageItems, ctypes.StorageItem{
2015-03-31 14:08:21 -07:00
key.([]byte), value.([]byte)})
return false
})
return &ctypes.ResultDumpStorage{storageRoot, storageItems}, nil
2015-03-31 14:08:21 -07:00
}