Compare commits

..

1 Commits

Author SHA1 Message Date
ae5d2f911b
add support for operators 2025-02-14 18:15:31 +02:00

@ -332,13 +332,9 @@ impl BrainData {
admin_account.kicked_for.push(reason.to_string());
operator_data.escrow -= refund_ammount;
let admin_pubkey = contract.admin_pubkey.clone();
drop(admin_account);
drop(contract);
self.delete_vm(grpc::DeleteVmReq {
uuid: uuid.to_string(),
admin_pubkey,
uuid: contract.uuid,
admin_pubkey: contract.admin_pubkey,
})
.await?;