Skip to content

Commit

Permalink
Omg you fkin whiner
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Feb 27, 2025
1 parent 69a7aba commit 7b309bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/stellar-rpc/internal/ingest/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,8 @@ func (s *Service) ingest(ctx context.Context, sequence uint32) error {

evictedTempLedgerKeys := make([]xdr.LedgerKey, 0, len(evictedLedgerKeys))
for _, key := range evictedLedgerKeys {
if key.Type == xdr.LedgerEntryTypeContractData && key.MustContractData().Durability == xdr.ContractDataDurabilityTemporary {
if key.Type == xdr.LedgerEntryTypeContractData &&
key.MustContractData().Durability == xdr.ContractDataDurabilityTemporary {
evictedTempLedgerKeys = append(evictedTempLedgerKeys, key)
}
}
Expand Down

0 comments on commit 7b309bf

Please sign in to comment.