module Eth::Tx

def is_signed?(tx)

Returns:
  • (Bool) - true if transaction is already signed.
def is_signed?(tx)
  !tx.signature_r.nil? and tx.signature_r != 0 and
  !tx.signature_s.nil? and tx.signature_s != 0
end