Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
90c340e
Execute self-nomination transactions on a new thread
MSNTCS Jan 14, 2020
86b3c9b
Change some functions due to the clippy restrictions
MSNTCS Jan 20, 2020
caf1198
Refactor BodyDownloader
Jan 26, 2020
c49804a
Add RPCs for checking peer best blocks & target blocks
byeongjee Jan 28, 2020
56550b4
Use proper NEED_NOMINATION_UNDER_TERM_LEFT value
Jan 29, 2020
0bcd5de
Fix the wrong condition in the auto_self_nominate.rs file
Jan 29, 2020
dd4f69f
Add more log in the auto_self_nominate file
Jan 29, 2020
b2cbc3d
Fix the selfnomination.test.ts
Jan 29, 2020
2bc8d93
Use auto-self-nomination-interval as 1 second
Jan 29, 2020
953b57c
Rename selfnomination.test.ts to autoselfnomination.test.ts
Jan 29, 2020
a86d20e
Rename MemPoolFees into MemPoolMinFees
byeongjee Feb 3, 2020
6fe2c0b
Add an RPC getting minimum fees confiugred by each machine
byeongjee Jan 30, 2020
c1dc531
Remove duplicated TermInfo
Jan 31, 2020
cda6277
Change constants to enumerations
Jan 9, 2020
6cbc541
Fix typos
Feb 5, 2020
0a305a3
Upgrade codechain-crypto to 0.2.0
Feb 7, 2020
682abb3
Fix typo
Feb 10, 2020
a806f3a
Rename double vote variable
Feb 18, 2020
6d59514
Report double votes found in commit messages
Feb 18, 2020
94f17d8
Fix typo in test helper's constants
HoOngEe Mar 2, 2020
d0d6ff0
Assign unbound port numbers in test instances
Mar 12, 2020
94c343d
Fix a wrong argument name
Mar 17, 2020
c745164
Remove ChainNotify::transactions_received()
Mar 13, 2020
532becb
Fix wrong debug message
Mar 30, 2020
2a1411d
Change the error message that CodeChain prints when account is not un…
Mar 30, 2020
a764f43
Disconnect a socket If CodeChain meets EOF while reading the socket
Apr 8, 2020
d06eae2
Disconnect a connection if the send call returns BrokenPipe error
Apr 8, 2020
a4ebd36
Remove unused dependencies in the sync module
Apr 9, 2020
2b467c9
Remove unused methods from ConsensusEngine
Apr 4, 2020
a59449c
Remove unused functions
Apr 8, 2020
f74124b
Remove unused fields
Apr 8, 2020
6a9a485
Remove unnecessarry attributes
Apr 8, 2020
c2e7e8d
Add document in the fields of HeaderDownloader struct
Apr 13, 2020
1da8f5c
Use `ctypes::Header` instead of `encoded::Header` in HeaderDownloader
Apr 13, 2020
f5debd6
Remove unnecessary initialization of genesis header extra data
Apr 14, 2020
3255b03
Remove verification_type
Apr 16, 2020
0f75c4d
Remove Verifier trait
Apr 16, 2020
bef8d75
Remove unnecessary serialize/deserialize while calling import_header
Apr 16, 2020
8f2695e
Make on_header_response receive moved Header instead of reference
Apr 16, 2020
c7e423c
Rename import_headers to import_verified_headers
Apr 16, 2020
021506e
Rename import_sealed_block to import_generated_block
Apr 16, 2020
4287c1b
Remove the unused argument of push_transaction
Apr 16, 2020
80a7d6e
Make the miner always have AccountProvider
Apr 12, 2020
0f87e27
Run mock tests
May 6, 2020
cc4f56a
Fix mock tests
May 6, 2020
32ce4f7
Change mock's Header::default function to static function
May 7, 2020
13fc568
Change seal serialize code in mock
May 7, 2020
1512b81
Add Header RLP encoding test in mock
May 7, 2020
56db6e9
Remove PartialEq derive from Header and Block
May 7, 2020
d1caafd
Add a hint comment that helps programmer to manage tests
May 7, 2020
6d7d682
Make typescript check type errors in test files
May 20, 2020
9e2b373
Make CodeChain makes blocks slowly if RUN_ON_TEST is set
May 20, 2020
164321d
Make the client hold the miner directly
May 31, 2020
6aea3b8
Upgrade parking_lot to 0.11.0
Jul 9, 2020
62cded4
Upgrade vergen 3
dynaxis May 27, 2020
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on: [push, pull_request]

name: yarn-lint
name: yarn

jobs:
lint:
Expand All @@ -14,3 +14,5 @@ jobs:
run: yarn
- working-directory: ./test
run: yarn lint
- working-directory: ./test
run: yarn test-mock
Loading