Skip to content

Commit f0a37e4

Browse files
committed
Fix bitsofgold payoutAmount
1 parent 96bc023 commit f0a37e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/partners/bitsofgold.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export function processBitsOfGoldTx(rawTx: unknown): StandardTx {
111111
depositCurrency = data.fiat_type
112112
depositAmount = data.fiat_amount
113113
payoutCurrency = data.coin_type
114-
payoutAmount = data.fiat_amount
114+
payoutAmount = data.coin_amount
115115
}
116116

117117
const direction = asMaybe(asValue('buy', 'sell'), undefined)(bogTx.type)

0 commit comments

Comments
 (0)