Skip to content

254 block receipts reminder #294

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Oct 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
69a95c0
#254 checkpoint: added badger db initialization code
andy-shi88 Sep 25, 2019
096101f
#254 checkpoint: added insert and get wrapper for badgerdb
andy-shi88 Sep 30, 2019
f6891a4
#254 checkpoint: inject KVDb to block core service
andy-shi88 Sep 30, 2019
102e25d
Merge branch 'develop' of github.com:zoobc/zoobc-core into 254-block-…
andy-shi88 Sep 30, 2019
519868f
#254 add new config for badger db path
andy-shi88 Oct 1, 2019
abe40c8
#254 add new blocker typefor duplicate data detection
andy-shi88 Oct 1, 2019
8e6eac2
#254 add constant for block reminder receipt in kvdb
andy-shi88 Oct 1, 2019
4132855
#254 generate receipt code for transaction and block data broadcasting
andy-shi88 Oct 1, 2019
24bc357
#254 fix badgerdb opening db path
andy-shi88 Oct 1, 2019
805e4f4
#254 kvdb integration for receipt
andy-shi88 Oct 1, 2019
6f9f2df
#254 add badger db test
andy-shi88 Oct 1, 2019
3520c6f
#254 add test for kvdb and badger db
andy-shi88 Oct 1, 2019
807af85
#254 add testdata directory for database tests
andy-shi88 Oct 2, 2019
236eda4
#254 fix badger db test : initialize database before opening / closing
andy-shi88 Oct 2, 2019
e3d20c6
#254 exclude sync.noCopy rule from govet for test files
andy-shi88 Oct 2, 2019
161e4e3
#254 tests for generating block and transaction receipt
andy-shi88 Oct 2, 2019
5fe2ece
#254 add expiration to inserted kvdb record
andy-shi88 Oct 2, 2019
804f5bb
#254 fix conflict in mempool core service test
andy-shi88 Oct 2, 2019
e26165c
#254 fix merging conflicts
andy-shi88 Oct 3, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ issues:
linters:
- scopelint
- unused
- path: "(.+)_test.go"
text: "sync.noCopy"
linters:
- govet
- text: "File is not `goimports`-ed"
linters:
- goimports
Expand Down
Loading