Skip to content

Commit 4148ead

Browse files
committed
Fix credo warnings
1 parent ce3616e commit 4148ead

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

eth_client/lib/eth_client.ex

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,6 @@ defmodule EthClient do
1313
4 => "rinkeby."
1414
}
1515

16-
# TODO:
17-
# Modify the code so that the only thing we do in Rust is the EC signature and Keccak hashing
18-
# View the state of a contract (all its variables, etc). This will require parsing the ABI
19-
# Add the ability to check if a transaction is a contract deployment or not
20-
# Check balance
21-
# Fix gas limit
22-
# Change shell text based on context
23-
# Get list of nodes
24-
2516
def deploy(bin_path) do
2617
{:ok, data} = File.read(bin_path)
2718
data = add_0x(data)

eth_client/test/eth_client_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
defmodule EthClientTest do
22
use ExUnit.Case
33
doctest EthClient
4-
alias EthClient.Context
54
alias EthClient.Account
5+
alias EthClient.Context
66

77
@bin "../contracts/src/bin/Storage.bin"
88
@abi "../contracts/src/bin/Storage.abi"

0 commit comments

Comments
 (0)