Response: {
"error": "formula {
// ================= OBYSTACK =================
// ============================================
// OBYTE STACK GAME from Whistling Frogs
// ============================================
// First published by Crypto Girl on 21 Sep 2019
// ============================================
// Version: 1.0 - 8 Oct 2019
// ============================================
// Can be used with OBYTE STACK GAME BOT v1.0
// Pairing code:
// [email protected]/bb-test#StackGame
// ============================================
// The object of the game is to win the Stack.
// Users make bids. Min bid is 100,000 bytes.
// 1st bid initiates the Stack.
// Each subsequent bid starts the 50 sec timer.
// If more than 50 sec has passed since the previous
// bid, the (stack - commission) is shared equally
// between the last bidder and the 1st bidder.
// The new stack is initiated with the current bid.
// A commission of 10,000 bytes is charged on each bid.
// ============================================
// Visit https://whistling-frogs.herokuapp.com/obyStack
// for a full description of the game.
// ============================================
//
// setting game parameters
$bot_address_back = 'QUONK7CUHPTGLNTZ6JE57SDVSFVDBCMM';
$commission_payout_threshold = 50000;
$commission = 10000;
$seed_amnt = 10000;
$min_bid_amnt = 100000;
$fees = 1000;
// setting game variables
$bid_amnt = trigger.output[[asset=base]];
$game_finished = (trigger.initial_address == $bot_address) otherwise false;
if ( ($game_finished == false) AND ($bid_amnt < $min_bid_amnt) ) bounce('Your bid is too small.');
$game_status = var['game_status'] otherwise 'not started';
} failed: booleans cannot be compared with other types"
}