19 lines
363 B
PHP
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;
|
|
}
|
|
}
|
|
|
|
}
|