diff --git a/src/API/Transactions.php b/src/API/Transactions.php index e6286b8..a4d4038 100644 --- a/src/API/Transactions.php +++ b/src/API/Transactions.php @@ -64,36 +64,6 @@ public function getUnconfirmed(string $id): ?array return $this->withApi('transactions')->requestGet("transactions/unconfirmed/{$id}"); } - /** - * Get a list of valid transaction types. - * - * @return array - */ - public function types(): ?array - { - return $this->requestGet('transactions/types'); - } - - /** - * Get the list of static transaction fees. - * - * @return array - */ - public function fees(): ?array - { - return $this->requestGet('transactions/fees'); - } - - /** - * Get the list of transaction schemas. - * - * @return array - */ - public function schemas(): ?array - { - return $this->requestGet('transactions/schemas'); - } - /** * Get the pool configuration. * diff --git a/tests/API/TransactionsTest.php b/tests/API/TransactionsTest.php index 6052082..dc597a3 100644 --- a/tests/API/TransactionsTest.php +++ b/tests/API/TransactionsTest.php @@ -66,30 +66,6 @@ public function get_unconfirmed_calls_correct_url() ); } - /** @test */ - public function types_calls_correct_url() - { - $this->assertResponse('GET', 'transactions/types', function ($client) { - return $client->transactions()->types(); - }); - } - - /** @test */ - public function fees_calls_correct_url() - { - $this->assertResponse('GET', 'transactions/fees', function ($client) { - return $client->transactions()->fees(); - }); - } - - /** @test */ - public function schemas_calls_correct_url() - { - $this->assertResponse('GET', 'transactions/schemas', function ($client) { - return $client->transactions()->schemas(); - }); - } - /** @test */ public function configuration_calls_correct_url() {