Skip to content

Commit 6a3deda

Browse files
Merge pull request #2 from suchsoon/main
chore: fix some typos
2 parents 994fbd4 + 33e43c2 commit 6a3deda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

node/rpc/blocksrv_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func searchBlocks(
3838
) []chain.SigBlock {
3939
// Create the gRPC block client
4040
cln := rpc.NewBlockClient(conn)
41-
// Call the BlocksSearch method to get the gRPC server stream of blcoks that
41+
// Call the BlocksSearch method to get the gRPC server stream of blocks that
4242
// match the search request
4343
stream, err := cln.BlockSearch(ctx, req)
4444
if err != nil {

node/statesync_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func TestStateSync(t *testing.T) {
194194
t.Fatal(err)
195195
}
196196
// Verify that the last block number and the last block parent on the
197-
// confirmed sates of the the new node and the bootstrap node are equal
197+
// confirmed states of the the new node and the bootstrap node are equal
198198
gotLastBlock, expLastBlock := nodeState.LastBlock(), bootState.LastBlock()
199199
if gotLastBlock.Number != expLastBlock.Number {
200200
t.Errorf(

0 commit comments

Comments
 (0)