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

16 lines
207 B
PHP

<?php
require_once (__DIR__.'/tpv.php');
/**
* Gets transaction confirmation from HTTP POST.
**/
class ConfirmPost extends Vn\Web\RestRequest
{
function run ($db)
{
Tpv::confirm ($db, $_POST);
}
}