Skip to content

Commit

Permalink
fixed derived addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
hackmod committed May 9, 2019
1 parent 600547b commit 6b9e8ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class CoinAddressDerivationTests {
BITCOINCASH -> assertEquals("bitcoincash:qpzl3jxkzgvfd9flnd26leud5duv795fnv7vuaha70", address)
CALLISTO -> assertEquals("0x3E6FFC80745E6669135a76F4A7ce6BCF02436e04", address)
DASH -> assertEquals("XqHiz8EXYbTAtBEYs4pWTHh7ipEDQcNQeT", address)
ELLAISM -> assertEquals("0x477db5c5d6aa8ae3171102575a4148529819d366", address)
ELLAISM -> assertEquals("0x1Ae593CAdb8BAC47D0394617396650474c303F9C", address)
ETHEREUM -> assertEquals("0x8f348F300873Fd5DA36950B2aC75a26584584feE", address)
ETHEREUMCLASSIC -> assertEquals("0x078bA3228F3E6C08bEEac9A005de0b7e7089aD1c", address)
ETHERSOCIAL -> assertEquals("0x182dd55D97C1F8D3781CDaDFC275948Ac38Ea1fe", address)
Expand Down
2 changes: 1 addition & 1 deletion js/tests/utils/CoinAddressDerivation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('CoinAddressDerivation', () => {
case CoinType.BITCOINCASH: expect('bitcoincash:qpzl3jxkzgvfd9flnd26leud5duv795fnv7vuaha70').to.equal(address); break;
case CoinType.CALLISTO: expect('0x3E6FFC80745E6669135a76F4A7ce6BCF02436e04').to.equal(address); break;
case CoinType.DASH: expect('XqHiz8EXYbTAtBEYs4pWTHh7ipEDQcNQeT').to.equal(address); break;
case CoinType.ELLAISM: expect('0x477db5c5d6aa8ae3171102575a4148529819d366').to.equal(address); break;
case CoinType.ELLAISM: expect('0x1Ae593CAdb8BAC47D0394617396650474c303F9C').to.equal(address); break;
case CoinType.ETHEREUM: expect('0x8f348F300873Fd5DA36950B2aC75a26584584feE').to.equal(address); break;
case CoinType.ETHEREUMCLASSIC: expect('0x078bA3228F3E6C08bEEac9A005de0b7e7089aD1c').to.equal(address); break;
case CoinType.ETHERSOCIAL: expect('0x182dd55D97C1F8D3781CDaDFC275948Ac38Ea1fe').to.equal(address); break;
Expand Down
2 changes: 1 addition & 1 deletion swift/Tests/CoinAddressDerivationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class CoinAddressDerivationTests: XCTestCase {
let expectedResult = "DJRFZNg8jkUtjcpo2zJd92FUAzwRjitw6f"
AssetCoinDerivation(coin, expectedResult, derivedAddress, address)
case .ellaism:
let expectedResult = "0x477db5c5d6aa8ae3171102575a4148529819d366"
let expectedResult = "0x1Ae593CAdb8BAC47D0394617396650474c303F9C"
AssetCoinDerivation(coin, expectedResult, derivedAddress, address)
case .ethereum:
let expectedResult = "0x8f348F300873Fd5DA36950B2aC75a26584584feE"
Expand Down

0 comments on commit 6b9e8ca

Please sign in to comment.