Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/elm/CompoundComponents/Eth/Ethereum.elm
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ type CustomerAddress
type Account
= UnknownAcct
| NoAccount
| Acct CustomerAddress (Maybe Decimal)

| Acct CustomerAddress (Maybe Decimal) (Maybe String)


--- FUNCTIONS
Expand Down
2 changes: 1 addition & 1 deletion src/elm/CompoundComponents/Ether/BNTransaction.elm
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ getPendingBNTransactionsForAccount maybeNetwork account { transactions } =
getUserTxModule : Maybe Network -> Account -> String
getUserTxModule maybeNetwork account =
case ( maybeNetwork, account ) of
( Just network, Acct customer _ ) ->
( Just network, Acct customer _ _ ) ->
getTxModule network customer

_ ->
Expand Down