@clonegod/ttd-sol-common 1.0.134 → 1.0.135
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -586,12 +586,16 @@ class RpcClient {
|
|
|
586
586
|
const send_tx_jito_url = process.env.SEND_TX_JITO_URL;
|
|
587
587
|
const send_tx_jito_stratgy = process.env.SEND_TX_JITO_STRATEGY;
|
|
588
588
|
if (send_tx_jito_url && send_tx_jito_stratgy === 'mul_ips') {
|
|
589
|
-
(0, dist_1.postJSON)(send_tx_jito_url, {
|
|
589
|
+
const send_result = yield (0, dist_1.postJSON)(send_tx_jito_url, {
|
|
590
590
|
encoding,
|
|
591
591
|
encoded_tx: serializedTransaction,
|
|
592
592
|
txid,
|
|
593
593
|
trace_id: ''
|
|
594
594
|
});
|
|
595
|
+
(0, dist_1.log_info)(`sendJitoBundle (mul_ips)`, {
|
|
596
|
+
txid,
|
|
597
|
+
send_result
|
|
598
|
+
});
|
|
595
599
|
return;
|
|
596
600
|
}
|
|
597
601
|
let bundleId = yield this.sendJitoBundle([serializedTransaction], encoding, jitoApiUrl);
|