Minor changes

This commit is contained in:
The MMGen Project 2018-06-08 10:12:14 +00:00
commit d1e2bbb2e0
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 7 additions and 3 deletions

View file

@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
obj.py: MMGen native classes for Ethereum
altcoins.eth.obj: Ethereum data type classes for the MMGen suite
"""
# Kwei (babbage) 3, Mwei (lovelace) 6, Gwei (shannon) 9, µETH (szabo) 12, mETH (finney) 15, ETH 18

View file

@ -1,4 +1,5 @@
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
#
# mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
# Copyright (C)2013-2018 The MMGen Project <mmgen@tuta.io>
@ -17,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
altcoins.eth.tw: ETH tracking wallet functions and methods for the MMGen suite
altcoins.eth.tw: Ethereum tracking wallet and related classes for the MMGen suite
"""
import json

View file

@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
altcoins.eth.tx: Ethereum transaction routines for the MMGen suite
altcoins.eth.tx: Ethereum transaction classes for the MMGen suite
"""
import json

View file

@ -211,11 +211,14 @@ class EthereumRPCConnection(CoinDaemonRPCConnection):
rpcmethods = (
'eth_accounts',
'eth_blockNumber',
'eth_call',
'eth_gasPrice',
'eth_getBalance',
'eth_getBlockByHash',
'eth_getBlockByNumber',
'eth_getCode',
'eth_getTransactionByHash',
'eth_getTransactionReceipt',
'eth_protocolVersion',
'eth_sendRawTransaction',
'eth_signTransaction',