Skip to content

Commit

Permalink
refactor: 🔥 remove unnecessary SendTransactionRaw
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Removes the `SendTransactionRaw` method from `AlgodClient`
  • Loading branch information
jasonboukheir committed Oct 29, 2021
1 parent 0b3bcf1 commit 552dac8
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,6 @@ public async UniTask<AlgoApiResponse<TransactionId>> SendTransaction(RawSignedTr
return await PostAsync("/v2/transactions", data);
}

public async UniTask<AlgoApiResponse> SendTransactionRaw(RawSignedTransaction rawTxn)
{
var data = AlgoApiSerializer.SerializeMessagePack(rawTxn);
return await PostAsync("/v2/transactions", data);
}

public async UniTask<AlgoApiResponse<TransactionParams>> GetTransactionParams()
{
return await GetAsync("/v2/transactions/params");
Expand Down

0 comments on commit 552dac8

Please sign in to comment.