issue 16, 23, 24 merge request
Implements #23 (closed), #16 (closed), #24 (closed)
Merge request reports
Activity
- Resolved by MATEU Bruno
- Resolved by MATEU Bruno
added 1 commit
- 75e1ce2c - change module name and correction previousHash
assigned to @r17zheng
- Resolved by MATEU Bruno
- Resolved by MATEU Bruno
It would be better if you squash all your commits together to avoid polluting the commit history from main tree. Here is a simple guide : https://davidwalsh.name/squash-commits-git and here is another one that explains a bit more how interactive rebases works: https://thoughtbot.com/blog/git-interactive-rebase-squash-amend-rewriting-history
Edited by MATEU Bruno
added 2 commits
- Resolved by MATEU Bruno
- lib/block/validation/local/block_hash.ex 0 → 100644
1 defmodule PreviousHash do Generally speaking, filenames follow the snake_case convention of the module they define. For example,
MyApp
should be defined inside themy_app.ex
from https://hexdocs.pm/elixir/master/naming-conventions.html#casing
You renamed the module suggestion: you renamed the module
PreviousHash
, but the file is still namedblock_hash.ex
. The file containing the test case have the same problemEdited by MATEU Brunochanged this line in version 10 of the diff
- Resolved by MATEU Bruno