Skip to content

Commit

Permalink
chore(transfer): fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stackchain committed May 4, 2024
1 parent ce175fb commit 9f69dd3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apps/wallet-mobile/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ SPEC CHECKSUMS:
amplitude-react-native: 1ea3d5e1f80ccc357dd178c55c29e51c89f1cd11
boost: 57d2868c099736d80fcd648bf211b4431e51a558
BVLinearGradient: e3aad03778a456d77928f594a649e96995f1c872
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
EXApplication: d8f53a7eee90a870a75656280e8d4b85726ea903
EXBarCodeScanner: 8e23fae8d267dbef9f04817833a494200f1fce35
EXCamera: 0fbfa338a3776af2722d626a3437abe33f708aad
Expand All @@ -838,7 +838,7 @@ SPEC CHECKSUMS:
FBLazyVector: 12ea01e587c9594e7b144e1bfc86ac4d9ac28fde
FBReactNativeSpec: faca7d16c37626ca5780a87adef703817722fe61
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
hermes-engine: d7cc127932c89c53374452d6f93473f1970d8e88
libaom: 144606b1da4b5915a1054383c3a4459ccdb3c661
libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {CardanoAddressedUtxo} from '@emurgo/yoroi-lib'
import assert from 'assert'
import {sortBy} from 'lodash'

import {Logger} from '../../logging'
import {StakingStatus} from '../../types'
import {CardanoMobile} from '../../wallets'
import type {TimestampedCertMeta} from '../transactionManager'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ const yoroiUnsignedTx: Chain.Cardano.UnsignedTx & {mock: true} = {
{
address: 'address1',
amounts: {
[tokenBalanceMocks.primaryETH.info.id]: tokenBalanceMocks.primaryETH,
[tokenBalanceMocks.primaryETH.info.id]: '1',
},
},
],
Expand All @@ -195,7 +195,7 @@ const yoroiUnsignedTx: Chain.Cardano.UnsignedTx & {mock: true} = {
{
address: 'change_address',
amounts: {
[tokenBalanceMocks.primaryETH.info.id]: tokenBalanceMocks.primaryETH,
[tokenBalanceMocks.primaryETH.info.id]: '1',
},
},
],
Expand Down
4 changes: 2 additions & 2 deletions packages/transfer/src/translators/reactjs/state/state.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ const unsignedTx: Chain.Cardano.UnsignedTx & {mock: true} = {
{
address: 'address1',
amounts: {
[tokenBalanceMocks.primaryETH.info.id]: tokenBalanceMocks.primaryETH,
[tokenBalanceMocks.primaryETH.info.id]: '1',
},
},
],
Expand All @@ -887,7 +887,7 @@ const unsignedTx: Chain.Cardano.UnsignedTx & {mock: true} = {
{
address: 'change_address',
amounts: {
[tokenBalanceMocks.primaryETH.info.id]: tokenBalanceMocks.primaryETH,
[tokenBalanceMocks.primaryETH.info.id]: '1',
},
},
],
Expand Down

0 comments on commit 9f69dd3

Please sign in to comment.