hedera-web/rest/tpv/confirm-post.php

18 lines
229 B
PHP
Raw Normal View History

2016-07-22 20:00:27 +00:00
<?php
require_once ('vn/web/json-request.php');
/**
* Gets transaction confirmation from HTTP POST.
**/
class TpvConfirmPost extends Vn\Web\JsonRequest
{
function run ()
{
$this->confirm ($_POST);
return TRUE;
}
}
?>