diff --git a/src/rpc/algorand.ts b/src/rpc/algorand.ts index e9d14d0..4c59518 100644 --- a/src/rpc/algorand.ts +++ b/src/rpc/algorand.ts @@ -95,7 +95,10 @@ export function proxyRestMethod( }; }; - return JSON.parse(JSON.stringify(resp, getCircularReplacer())); + if (resp?.body && "current-round" in resp?.body) { + delete resp?.body["current-round"]; + } + return JSON.parse(JSON.stringify(resp?.body, getCircularReplacer())); }; }