File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,6 @@ defmodule EthClient do
13
13
4 => "rinkeby."
14
14
}
15
15
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
-
25
16
def deploy ( bin_path ) do
26
17
{ :ok , data } = File . read ( bin_path )
27
18
data = add_0x ( data )
Original file line number Diff line number Diff line change 1
1
defmodule EthClientTest do
2
2
use ExUnit.Case
3
3
doctest EthClient
4
- alias EthClient.Context
5
4
alias EthClient.Account
5
+ alias EthClient.Context
6
6
7
7
@ bin "../contracts/src/bin/Storage.bin"
8
8
@ abi "../contracts/src/bin/Storage.abi"
You can’t perform that action at this time.
0 commit comments