game2006api/webapp/services/ContributionService.php
aozhiwei f8bf1cd1a2 1
2024-08-16 10:24:25 +08:00

19 lines
363 B
PHP

<?php
namespace services;
class ContributionService extends BaseService {
private static $ignoreCa = array(
'BlockChain@mintGoldBullion',
);
public static function onGoldConsume($params) {
$ca = getReqVal('c', '') . '@' . getReqVal('a');
if (array_key_exists($ca, self::$ignoreCa)) {
return;
}
}
}