File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
magicblock-geyser-plugin/src Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ impl MagicValidator {
174
174
config : MagicValidatorConfig ,
175
175
identity_keypair : Keypair ,
176
176
) -> ApiResult < Self > {
177
- // TODO(thlorenz): @@ this will need to be recreated on each start
177
+ // TODO(thlorenz): this will need to be recreated on each start
178
178
let token = CancellationToken :: new ( ) ;
179
179
180
180
let ( geyser_manager, geyser_rpc_service) =
@@ -650,7 +650,7 @@ impl MagicValidator {
650
650
}
651
651
652
652
async fn ensure_validator_funded_on_chain ( & self ) -> ApiResult < ( ) > {
653
- // TODO: @@@ configurable?
653
+ // TODO(thlorenz) make this configurable in the future
654
654
const MIN_BALANCE_SOL : u64 = 5 ;
655
655
// TODO: @@ duplicate code getting remote_rpc_config
656
656
let accounts_config = try_convert_accounts_config (
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ impl GrpcService {
144
144
block_fail_action : ConfigBlockFailAction ,
145
145
) {
146
146
const PROCESSED_MESSAGES_MAX : usize = 31 ;
147
- // TODO(thlorenz): @@@ This could become a bottleneck affecting latency
147
+ // TODO(thlorenz): This could become a bottleneck affecting latency
148
148
const PROCESSED_MESSAGES_SLEEP : Duration = Duration :: from_millis ( 10 ) ;
149
149
150
150
let mut messages: BTreeMap < u64 , SlotMessages > = Default :: default ( ) ;
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ pub(crate) async fn send_transaction(
213
213
214
214
/// Verifies only the transaction signature and is used when sending a
215
215
/// transaction to avoid the extra overhead of [sig_verify_transaction_and_check_precompiles]
216
- /// TODO(thlorenz): @@ sigverify takes upwards of 90µs which is 30%+ of
216
+ /// TODO(thlorenz): sigverify takes upwards of 90µs which is 30%+ of
217
217
/// the entire time it takes to execute a transaction.
218
218
/// Therefore this an intermediate solution and we need to investigate verifying the
219
219
/// wire_transaction instead (solana sigverify implementation is packet based)
You can’t perform that action at this time.
0 commit comments