Skip to content

Commit 53945e7

Browse files
nits
1 parent a215760 commit 53945e7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/flamenco/runtime/sysvar/fd_sysvar_cache.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ fd_sysvar_cache_restore_##name(
133133
break; \
134134
} \
135135
type##_t * mem = fd_spad_alloc( runtime_spad, \
136-
type##_align(), \
137-
total_sz ); \
136+
type##_align(), \
137+
total_sz ); \
138138
if( FD_UNLIKELY( !mem ) ) { \
139139
FD_LOG_ERR(( "memory allocation failed" )); \
140140
} \

src/flamenco/runtime/sysvar/fd_sysvar_epoch_rewards.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ FD_PROTOTYPES_BEGIN
99

1010
/* Read the current value of the EpochRewards sysvar from Funk. */
1111
fd_sysvar_epoch_rewards_t *
12-
fd_sysvar_epoch_rewards_read( fd_sysvar_cache_t const * sysvar_cache,
13-
fd_funk_t * funk,
14-
fd_funk_txn_t * funk_txn,
15-
fd_spad_t * spad,
16-
fd_wksp_t * wksp );
12+
fd_sysvar_epoch_rewards_read( fd_sysvar_cache_t const * sysvar_cache,
13+
fd_funk_t * funk,
14+
fd_funk_txn_t * funk_txn,
15+
fd_spad_t * spad,
16+
fd_wksp_t * wksp );
1717

1818
/* Update EpochRewards sysvar with distributed rewards
1919

src/flamenco/runtime/sysvar/fd_sysvar_fees.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fd_sysvar_fees_new_derived( fd_exec_slot_ctx_t * slot_ctx,
2929
/* Updates fees for every slot. */
3030
void
3131
fd_sysvar_fees_update( fd_exec_slot_ctx_t * slot_ctx,
32-
fd_spad_t * runtime_spad );
32+
fd_spad_t * runtime_spad );
3333

3434
FD_PROTOTYPES_END
3535

src/flamenco/runtime/sysvar/fd_sysvar_slot_hashes.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fd_sysvar_slot_hashes_init( fd_exec_slot_ctx_t * slot_ctx,
3939
void
4040
fd_sysvar_slot_hashes_update( fd_exec_slot_ctx_t * slot_ctx, fd_spad_t * runtime_spad ) {
4141
fd_slot_hashes_global_t * slot_hashes_global = fd_sysvar_slot_hashes_read( slot_ctx, runtime_spad );
42-
fd_slot_hash_t * hashes = NULL;
42+
fd_slot_hash_t * hashes = NULL;
4343
if( !slot_hashes_global ) {
4444
uchar * deque_mem = fd_spad_alloc( runtime_spad,
4545
deq_fd_slot_hash_t_align(),

0 commit comments

Comments
 (0)