Skip to content

Commit

Permalink
chore: Minor cleanup (#26)
Browse files Browse the repository at this point in the history
* chore: remove undefine ldflags

* chore: remove celestia specific comments

---------

Co-authored-by: Ganesha Upadhyaya <[email protected]>
  • Loading branch information
MSevey and gupadhyaya authored Nov 5, 2024
1 parent 2ed9f15 commit 6c3a7c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ count := 1
## build: Build centralized-sequencer binary.
build:
@echo "--> Building centralized-sequencer"
@go build -o build/ ${LDFLAGS} ./...
@go build -o build/ ./...
.PHONY: build

## help: Show this help message
Expand Down
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

centralized-sequencer is an implementation of the [Generic Sequencer interface](https://github.com/rollkit/go-sequencing)
for modular blockchains. It runs a gRPC service,
which can be used by rollup clients to sequence transactions to Celestia da.
which can be used by rollup clients to sequence transactions to DA layer.

<!-- markdownlint-disable MD013 -->
[![build-and-test](https://github.com/rollkit/centralized-sequencer/actions/workflows/ci_release.yml/badge.svg)](https://github.com/rollkit/centralized-sequencer/actions/workflows/ci_release.yml)
Expand Down Expand Up @@ -30,7 +30,7 @@ make build
## Usage

centralized-sequencer exposes a gRPC service that can be used with any gRPC
client to sequence rollup transactions to the celestia network.
client to sequence rollup transactions to a DA layer.

## Example

Expand Down Expand Up @@ -93,11 +93,3 @@ If you're looking for issues to work on, try looking at the [good first issue
list](https://github.com/rollkit/centralized-sequencer/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
Issues with this tag are suitable for a new external contributor and is a great
way to find something you can help with!

Please join our
[Community Discord](https://discord.com/invite/YsnTPcSfWQ)
to ask questions, discuss your ideas, and connect with other contributors.

## Code of Conduct

See our Code of Conduct [here](https://docs.celestia.org/community/coc).
2 changes: 1 addition & 1 deletion sequencing/sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ func totalBytes(data [][]byte) int {
return total
}

// Sequencer implements go-sequencing interface using celestia backend
// Sequencer implements go-sequencing interface
type Sequencer struct {
dalc *da.DAClient
batchTime time.Duration
Expand Down

0 comments on commit 6c3a7c5

Please sign in to comment.