Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mybee
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
mybee
Commits
f621d41b
Unverified
Commit
f621d41b
authored
May 31, 2021
by
hanksuper
Committed by
GitHub
May 31, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: fix typo in comments (#1901)
parent
598df843
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
sctx.go
pkg/sctx/sctx.go
+1
-1
chequestore.go
pkg/settlement/swap/chequebook/chequestore.go
+1
-1
leveldb.go
pkg/statestore/leveldb/leveldb.go
+1
-1
leveldb_test.go
pkg/statestore/leveldb/leveldb_test.go
+1
-1
store.go
pkg/statestore/mock/store.go
+1
-1
store_test.go
pkg/statestore/mock/store_test.go
+1
-1
store.go
pkg/statestore/test/store.go
+1
-1
steward.go
pkg/steward/steward.go
+1
-1
steward_test.go
pkg/steward/steward_test.go
+1
-1
store.go
pkg/storage/store.go
+1
-1
No files found.
pkg/sctx/sctx.go
View file @
f621d41b
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
// Package sctx provides convenience methods for context
// value injection and extraction.
...
...
pkg/settlement/swap/chequebook/chequestore.go
View file @
f621d41b
...
...
@@ -34,7 +34,7 @@ var (
// ChequeStore handles the verification and storage of received cheques
type
ChequeStore
interface
{
// ReceiveCheque verifies and stores a cheque. It returns the tota
m
amount earned.
// ReceiveCheque verifies and stores a cheque. It returns the tota
l
amount earned.
ReceiveCheque
(
ctx
context
.
Context
,
cheque
*
SignedCheque
)
(
*
big
.
Int
,
error
)
// LastCheque returns the last cheque we received from a specific chequebook.
LastCheque
(
chequebook
common
.
Address
)
(
*
SignedCheque
,
error
)
...
...
pkg/statestore/leveldb/leveldb.go
View file @
f621d41b
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
package
leveldb
...
...
pkg/statestore/leveldb/leveldb_test.go
View file @
f621d41b
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
package
leveldb_test
...
...
pkg/statestore/mock/store.go
View file @
f621d41b
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
package
mock
...
...
pkg/statestore/mock/store_test.go
View file @
f621d41b
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
package
mock_test
...
...
pkg/statestore/test/store.go
View file @
f621d41b
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
package
test
...
...
pkg/steward/steward.go
View file @
f621d41b
// Copyright 2021 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
// Package stewardess provides convenience methods
// for reseeding content on Swarm.
...
...
pkg/steward/steward_test.go
View file @
f621d41b
// Copyright 2021 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
package
steward_test
...
...
pkg/storage/store.go
View file @
f621d41b
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package storage
// license that can be found in the LICENSE file.
// Package storage provides implementation contracts and notions
// used across storage-aware components in Bee.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment