Browse Source

updated Interface and ClientBase method "sendTransaction" description

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
c89f56309d
  1. 2
      libethereum/ClientBase.h
  2. 2
      libethereum/Interface.h

2
libethereum/ClientBase.h

@ -76,7 +76,7 @@ public:
virtual ~ClientBase() {}
/// Submits the given transaction.
/// @returns the new contract's address (assuming it all goes through).
/// @returns the new transaction's hash.
virtual h256 submitTransaction(TransactionSkeleton const& _t, Secret const& _secret) override;
using Interface::submitTransaction;

2
libethereum/Interface.h

@ -66,7 +66,7 @@ public:
// [TRANSACTION API]
/// Submits a new transaction.
/// @returns the new contract's address (assuming it all goes through and it's contract creation).
/// @returns the transaction's hash.
virtual h256 submitTransaction(TransactionSkeleton const& _t, Secret const& _secret) = 0;
/// Submits the given message-call transaction.

Loading…
Cancel
Save