diff options
Diffstat (limited to 'packages/web3-wrapper/src')
-rw-r--r-- | packages/web3-wrapper/src/marshaller.ts | 3 | ||||
-rw-r--r-- | packages/web3-wrapper/src/web3_wrapper.ts | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/web3-wrapper/src/marshaller.ts b/packages/web3-wrapper/src/marshaller.ts index 84c351387..7af61752d 100644 --- a/packages/web3-wrapper/src/marshaller.ts +++ b/packages/web3-wrapper/src/marshaller.ts @@ -74,9 +74,6 @@ export const marshaller = { return tx; }, marshalTxData(txData: Partial<TxData>): Partial<TxDataRPC> { - if (_.isUndefined(txData.from)) { - throw new Error(`txData is missing required "from" address.`); - } const callTxDataBase = { ...txData, }; diff --git a/packages/web3-wrapper/src/web3_wrapper.ts b/packages/web3-wrapper/src/web3_wrapper.ts index d1e4c1edf..2d7b590b5 100644 --- a/packages/web3-wrapper/src/web3_wrapper.ts +++ b/packages/web3-wrapper/src/web3_wrapper.ts @@ -483,6 +483,9 @@ export class Web3Wrapper { * @returns Transaction hash */ public async sendTransactionAsync(txData: TxData): Promise<string> { + if (_.isUndefined(txData.from)) { + throw new Error(`txData is missing required "from" address.`); + } const txDataHex = marshaller.marshalTxData(txData); const txHash = await this._sendRawPayloadAsync<string>({ method: 'eth_sendTransaction', params: [txDataHex] }); return txHash; |