aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-11-09 08:15:57 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-11-09 08:15:57 +0800
commitcd44470a29c48275e6a2a4bba42734d8f900d387 (patch)
tree558aa4bb76eae3418cf411fcfba089ef8edf19ef
parentf44c5b2292c8688931127e3cb582edd36edfed75 (diff)
downloaddexon-0x-contracts-cd44470a29c48275e6a2a4bba42734d8f900d387.tar
dexon-0x-contracts-cd44470a29c48275e6a2a4bba42734d8f900d387.tar.gz
dexon-0x-contracts-cd44470a29c48275e6a2a4bba42734d8f900d387.tar.bz2
dexon-0x-contracts-cd44470a29c48275e6a2a4bba42734d8f900d387.tar.lz
dexon-0x-contracts-cd44470a29c48275e6a2a4bba42734d8f900d387.tar.xz
dexon-0x-contracts-cd44470a29c48275e6a2a4bba42734d8f900d387.tar.zst
dexon-0x-contracts-cd44470a29c48275e6a2a4bba42734d8f900d387.zip
fix: wrong prop names used
-rw-r--r--packages/instant/src/components/payment_method.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/components/payment_method.tsx b/packages/instant/src/components/payment_method.tsx
index a96c6297c..8c0b47d72 100644
--- a/packages/instant/src/components/payment_method.tsx
+++ b/packages/instant/src/components/payment_method.tsx
@@ -37,8 +37,8 @@ export const PaymentMethod: React.StatelessComponent<PaymentMethodProps> = () =>
</Flex>
</Container>
<PaymentMethodDropdown
- selectedEthAddress="0xa1b2c3d4e5f6g7h8j9k10"
- addressEthBaseAmount={new BigNumber(10500000000000000000)}
+ accountAddress="0xa1b2c3d4e5f6g7h8j9k10"
+ accountEthBalanceInWei={new BigNumber(10500000000000000000)}
network={Network.Mainnet}
/>
</Container>