0
1
Fork 0
hedera-web-mindshore/rest/tpv/confirm-post.php

16 lines
206 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);
}
}