Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
evansmj committed Dec 26, 2024
1 parent fb9eb2a commit 5f2b6b2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const VolumeRoot = (props) => {
const fetchVolumeData = useCallback(async () => {
getVolumeData()
.then((response: VolumeData) => {
console.log("123 volume = " + JSON.stringify(response));
setVolumeData(response);
})
.catch(err => {
Expand Down
1 change: 0 additions & 1 deletion apps/frontend/src/sql/bookkeeper-transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,6 @@ export function transformToSatsFlow(
}

export function transformToVolumeData(rawSqlResultSet: RawVolumeResultSet): VolumeData {
console.log("123 raw = " + JSON.stringify(rawSqlResultSet));
let returnForwards: Forward[] = [];
let totalOutboundSat = 0;
let totalFeeSat = 0;
Expand Down

0 comments on commit 5f2b6b2

Please sign in to comment.