Merge pull request #808 from drawdrop/master

chore: fix some function names
pull/804/head
András Bánki-Horváth 1 month ago committed by GitHub
commit a5180ffcd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -200,7 +200,7 @@ type FixedSizeSlice[T any] struct {
sync.Mutex sync.Mutex
} }
// NewFixedSlice initializes a new FixedSlice with a given maximum length. // NewFixedSizeSlice initializes a new FixedSlice with a given maximum length.
func NewFixedSizeSlice[T any](maxLen int) *FixedSizeSlice[T] { func NewFixedSizeSlice[T any](maxLen int) *FixedSizeSlice[T] {
return &FixedSizeSlice[T]{ return &FixedSizeSlice[T]{
data: make([]T, 0, maxLen), data: make([]T, 0, maxLen),

@ -283,7 +283,7 @@ func testSqliteLoopInStore(t *testing.T, pendingSwap LoopInContract) {
require.NoError(t, err) require.NoError(t, err)
} }
// TestLiquidityParams checks that reading and writing to liquidty bucket are // TestSqliteLiquidityParams checks that reading and writing to liquidty bucket are
// as expected. // as expected.
func TestSqliteLiquidityParams(t *testing.T) { func TestSqliteLiquidityParams(t *testing.T) {
ctxb := context.Background() ctxb := context.Background()

@ -30,7 +30,7 @@ func MapSQLError(err error) error {
return err return err
} }
// parsePostgresError attempts to parse a sqlite error as a database agnostic // parseSqliteError attempts to parse a sqlite error as a database agnostic
// SQL error. // SQL error.
func parseSqliteError(sqliteErr *sqlite.Error) error { func parseSqliteError(sqliteErr *sqlite.Error) error {
switch sqliteErr.Code() { switch sqliteErr.Code() {

Loading…
Cancel
Save