aboutsummaryrefslogtreecommitdiffstats
path: root/test/e2e/beta/contract-test
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-07-03 07:51:27 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-07-03 07:51:27 +0800
commitcb71896a8fd2f1a49d462774ff15217e2febaf86 (patch)
tree47fa9fe95c02150db685fd20857700bbcf7b7c2b /test/e2e/beta/contract-test
parent376188ffc5dac4a0faca7db1257baec08592e380 (diff)
downloadtangerine-wallet-browser-cb71896a8fd2f1a49d462774ff15217e2febaf86.tar.gz
tangerine-wallet-browser-cb71896a8fd2f1a49d462774ff15217e2febaf86.tar.zst
tangerine-wallet-browser-cb71896a8fd2f1a49d462774ff15217e2febaf86.zip
fix warnings for e2e tests
Diffstat (limited to 'test/e2e/beta/contract-test')
-rw-r--r--test/e2e/beta/contract-test/contract.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/e2e/beta/contract-test/contract.js b/test/e2e/beta/contract-test/contract.js
index f1ca006b1..78ab0cfc6 100644
--- a/test/e2e/beta/contract-test/contract.js
+++ b/test/e2e/beta/contract-test/contract.js
@@ -29,10 +29,11 @@ The `piggybankContract` is compiled from:
*/
var piggybankContract = web3.eth.contract([{'constant': false, 'inputs': [{'name': 'withdrawAmount', 'type': 'uint256'}], 'name': 'withdraw', 'outputs': [{'name': 'remainingBal', 'type': 'uint256'}], 'payable': false, 'stateMutability': 'nonpayable', 'type': 'function'}, {'constant': true, 'inputs': [], 'name': 'owner', 'outputs': [{'name': '', 'type': 'address'}], 'payable': false, 'stateMutability': 'view', 'type': 'function'}, {'constant': false, 'inputs': [], 'name': 'deposit', 'outputs': [{'name': '', 'type': 'uint256'}], 'payable': true, 'stateMutability': 'payable', 'type': 'function'}, {'inputs': [], 'payable': false, 'stateMutability': 'nonpayable', 'type': 'constructor'}])
+let deployButton, depositButton, withdrawButton
deployButton.addEventListener('click', function (event) {
- var piggybank = piggybankContract.new(
+ piggybankContract.new(
{
from: web3.eth.accounts[0],
data: '0x608060405234801561001057600080fd5b5033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000808190555061023b806100686000396000f300608060405260043610610057576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680632e1a7d4d1461005c5780638da5cb5b1461009d578063d0e30db0146100f4575b600080fd5b34801561006857600080fd5b5061008760048036038101908080359060200190929190505050610112565b6040518082815260200191505060405180910390f35b3480156100a957600080fd5b506100b26101d0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6100fc6101f6565b6040518082815260200191505060405180910390f35b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561017057600080fd5b8160008082825403925050819055503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156101c5573d6000803e3d6000fd5b506000549050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60003460008082825401925050819055506000549050905600a165627a7a72305820f237db3ec816a52589d82512117bc85bc08d3537683ffeff9059108caf3e5d400029',