calculateAccountHash
This function is required to be implemented by the app developer for internal use by shardus. It takes in 1 parameter.
accountDatathe account data
Use the
cryptomodule to hash the accountData that is passed in and return the resulting hash
calculateAccountHash (accountData) {
return crypto.hashObj(accountData)
}