deleteAccountData
This function is required to be implemented by the app developer for internal use by shardus. It takes in 1 parameter.
addressList
An array of account addresses
Implement this function by deleting the account data for the all account id's that match those passed in by
addressList
deleteAccountData(addressList) {
for (const address of addressList) {
delete accounts[address]
}
}