mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-23 01:41:31 +00:00
move perms to vm.Account
This commit is contained in:
@ -2,6 +2,7 @@ package vm
|
||||
|
||||
import (
|
||||
. "github.com/tendermint/tendermint/common"
|
||||
ptypes "github.com/tendermint/tendermint/permission/types"
|
||||
)
|
||||
|
||||
const (
|
||||
@ -15,6 +16,8 @@ type Account struct {
|
||||
Nonce int64
|
||||
StorageRoot Word256
|
||||
Other interface{} // For holding all other data.
|
||||
|
||||
Permissions *ptypes.Permissions
|
||||
}
|
||||
|
||||
func (acc *Account) String() string {
|
||||
|
Reference in New Issue
Block a user