Ejemplo n.º 1
0
    $spend = bankmsg('spend', $bankid, $tran, $id, $tokenid, $amt, "Welcome to Trubanc!");
    $msg = $db->get($server->assetbalancekey($bankid, $tokenid));
    $bal = $server->unpack_bankmsg($msg, $t->ATBALANCE, $t->BALANCE, $t->AMOUNT);
    echo "bal: {$bal}\n";
    $bal = bankmsg('balance', $bankid, $tran, $tokenid, $bal - $amt);
    process("{$spend}.{$bal}");
}
// Register $id, if not yet registered
if (!$server->pubkeydb->get($id)) {
    // Get the bankid. This command does not require an acount
    process(custmsg('bankid', $pubkey));
    process(custmsg("register", $bankid, $pubkey, "George Jetson"));
    process(custmsg('id', $bankid, $id));
}
//process(custmsg2("register",$bankid,$pubkey2,"Jane Jetson"));
$trans = $db->get($server->accttimekey($id));
// getinbox
$inbox = $db->contents($server->inboxkey($id));
if (count($inbox) > 0) {
    $req = getreq();
    if (!$req) {
        echo "Couldn't get req\n";
    } else {
        process(custmsg('getinbox', $bankid, $req));
        $trans = $db->get($server->accttimekey($id));
    }
}
$arr = explode(',', $trans);
$time = $arr[0];
echo "id1 trans: {$trans}, time: {$time}\n";
// Accept the id registration spend