one of secondary AAs bounced with error: VPYR2EMYAS5ASCLRDLHVBKKBR3ZF7GSB: formula
$name = trigger.data.name;
$value = trigger.data.value;
if ($name == 'add_price_aa'){
require($value == 'yes', "can't remove asset");
require(trigger.data.price_aa, "no price_aa");
}
else if ($name == 'change_price_aa' OR $name == 'change_drift_rate')
require($asset, "no asset");
else if ($name == 'add_preipo'){
require($value == 'yes', "can't remove preipo");
require(trigger.data.symbol, "no symbol");
require(trigger.data.initial_auction_price, "no initial_auction_price");
require(trigger.data.max_tokens, "no max_tokens");
}
$bAddNewAsset = ($name == 'add_price_aa' OR $name == 'add_preipo');
failed: booleans cannot be compared with other types