Upgrade chaind
This commit is contained in:
parent
7bc1f56a0a
commit
5b92a8361d
@ -123,6 +123,7 @@ cat tx3.txt | socat UNIX-CLIENT=/run/user/$UID/chaind/eth/testsession/chaind.soc
|
||||
|
||||
### check status of transactions
|
||||
|
||||
|
||||
```
|
||||
export DATABASE_ENGINE=sqlite
|
||||
sender=$(eth-keyfile -d $WALLET_KEY_FILE)
|
||||
|
@ -162,7 +162,8 @@ def main():
|
||||
data = None
|
||||
try:
|
||||
data_in_str = data_in.decode('utf-8')
|
||||
data = bytes.fromhex(strip_0x(data_in_str))
|
||||
data_hex = strip_0x(data_in_str.rstrip())
|
||||
data = bytes.fromhex(data_hex)
|
||||
except ValueError:
|
||||
logg.error('invalid input "{}"'.format(data_in_str))
|
||||
continue
|
||||
|
@ -1,3 +1,3 @@
|
||||
chaind<=0.0.1,>=0.0.1a5
|
||||
chaind<=0.0.1,>=0.0.1a6
|
||||
hexathon~=0.0.1a7
|
||||
chainlib-eth<=0.0.6,>=0.0.6a1
|
||||
|
Loading…
Reference in New Issue
Block a user