diff options
| author | fragosti <francesco.agosti93@gmail.com> | 2018-11-09 08:15:57 +0800 | 
|---|---|---|
| committer | fragosti <francesco.agosti93@gmail.com> | 2018-11-09 08:15:57 +0800 | 
| commit | cd44470a29c48275e6a2a4bba42734d8f900d387 (patch) | |
| tree | 558aa4bb76eae3418cf411fcfba089ef8edf19ef | |
| parent | f44c5b2292c8688931127e3cb582edd36edfed75 (diff) | |
| download | dexon-sol-tools-cd44470a29c48275e6a2a4bba42734d8f900d387.tar.gz dexon-sol-tools-cd44470a29c48275e6a2a4bba42734d8f900d387.tar.zst dexon-sol-tools-cd44470a29c48275e6a2a4bba42734d8f900d387.zip | |
fix: wrong prop names used
| -rw-r--r-- | packages/instant/src/components/payment_method.tsx | 4 | 
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> | 
