Skip to content
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

ignore sqlite WAL journals in git; increase logging priority of attestation/block sending #1590

Merged
merged 3 commits into from
Aug 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ build/
*.ssz
*.log
*.sqlite3
*.sqlite3-shm
*.sqlite3-wal

/local_testnet_data*/
/local_testnet*_data*/
Expand Down
2 changes: 1 addition & 1 deletion beacon_chain/fork_choice/fork_choice.nim
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import
# Standard library
std/[sequtils, sets, tables, typetraits],
std/[sequtils, sets, tables],
# Status libraries
stew/results, chronicles,
# Internal
Expand Down
4 changes: 2 additions & 2 deletions beacon_chain/validator_duties.nim
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ proc createAndSendAttestation(node: BeaconNode,
if node.config.dumpEnabled:
dump(node.config.dumpDirOutgoing, attestation.data, validator.pubKey)

info "Attestation sent",
notice "Attestation sent",
attestation = shortLog(attestation),
validator = shortLog(validator),
indexInCommittee = indexInCommittee
Expand Down Expand Up @@ -249,7 +249,7 @@ proc proposeSignedBlock*(node: BeaconNode,

return head

info "Block proposed",
notice "Block proposed",
blck = shortLog(newBlock.message),
blockRoot = shortLog(newBlockRef[].root),
validator = shortLog(validator)
Expand Down