Skip to content

Commit

Permalink
Fix typo when appending to soroban fees
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio committed May 13, 2024
1 parent d0551b7 commit 9aac80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-rpc/internal/feewindow/feewindow.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ func (fw *FeeWindows) IngestFees(meta xdr.LedgerCloseMeta) error {
continue
}
inclusionFee := uint64(tx.Envelope.V1.Tx.Fee) - uint64(tx.Envelope.V1.Tx.Ext.SorobanData.ResourceFee)
classicFees = append(sorobanInclusionFees, inclusionFee)
sorobanInclusionFees = append(sorobanInclusionFees, inclusionFee)
continue
}
}
Expand Down

0 comments on commit 9aac80d

Please sign in to comment.