summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Guidarelli <ben.guidarelli@gmail.com>2022-10-11 12:03:20 -0400
committerGitHub <noreply@github.com>2022-10-11 12:03:20 -0400
commit844e2ca8e8fabc7040b6240ba7ea3df93e262ab5 (patch)
treec4b25c33bbdb66a3fcfc70b3976c0c6675d95e0d
parent56ed7991da2d3bc3fe23c51fa4e0f66cc1e27d69 (diff)
Update daemon/algod/api/server/v2/handlers.goincrease-teal-compile
-rw-r--r--daemon/algod/api/server/v2/handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/algod/api/server/v2/handlers.go b/daemon/algod/api/server/v2/handlers.go
index 28600ab80..3b8d7bc67 100644
--- a/daemon/algod/api/server/v2/handlers.go
+++ b/daemon/algod/api/server/v2/handlers.go
@@ -58,7 +58,7 @@ const maxTealSourceBytes = 200_000
// With the ability to hold unlimited assets DryrunRequests can
// become quite large, allow up to 1mb
-const maxTealDryrunBytes = 1e6
+const maxTealDryrunBytes = 1_000_000
// Handlers is an implementation to the V2 route handler interface defined by the generated code.
type Handlers struct {