Skip to content

Commit 509d0b1

Browse files
Move libs to libs/celestia-app (#1118)
<!-- Please read and fill out this form before submitting your PR. Please make sure you have reviewed our contributors guide before submitting your first PR. --> ## Overview Closes: #1119 <!-- Please provide an explanation of the PR, including the appropriate context, background, goal, and rationale. If there is an issue with this information, please provide a tl;dr and link the issue. --> ## Checklist <!-- Please complete the checklist to ensure that the PR is ready to be reviewed. IMPORTANT: PRs should be left in Draft until the below checklist is completed. --> - [ ] New and updated code has appropriate documentation - [ ] New and updated code has new and/or updated testing - [ ] Required CI checks are passing - [ ] Visual proof for any user facing features like CLI or documentation updates - [ ] Linked issues closed with keywords
1 parent 4c903bc commit 509d0b1

26 files changed

Lines changed: 23 additions & 23 deletions
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"math"
66

7-
"github.com/rollkit/rollkit/libs/appconsts"
7+
"github.com/rollkit/rollkit/libs/celestia-app/appconsts"
88
)
99

1010
const (
File renamed without changes.
File renamed without changes.
File renamed without changes.

libs/shares/compact_shares_test.go renamed to libs/celestia-app/shares/compact_shares_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"github.com/stretchr/testify/assert"
1111
"github.com/stretchr/testify/require"
1212

13-
"github.com/rollkit/rollkit/libs/appconsts"
14-
appns "github.com/rollkit/rollkit/libs/namespace"
15-
"github.com/rollkit/rollkit/libs/testfactory"
13+
"github.com/rollkit/rollkit/libs/celestia-app/appconsts"
14+
appns "github.com/rollkit/rollkit/libs/celestia-app/namespace"
15+
"github.com/rollkit/rollkit/libs/celestia-app/testfactory"
1616
)
1717

1818
func SplitTxs(txs coretypes.Txs) (txShares []Share, err error) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package shares
33
import (
44
"fmt"
55

6-
"github.com/rollkit/rollkit/libs/appconsts"
6+
"github.com/rollkit/rollkit/libs/celestia-app/appconsts"
77
)
88

99
// InfoByte is a byte with the following structure: the first 7 bits are

0 commit comments

Comments
 (0)