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

14 lines
203 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);
}
}