From 89a441f18727b6e9e57353588ebee371be614cc4 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 12 Sep 2024 17:55:02 +0200 Subject: [PATCH] core/types: fix depositRequestType --- core/types/deposit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/types/deposit.go b/core/types/deposit.go index 18f5659a35..42f90b70e6 100644 --- a/core/types/deposit.go +++ b/core/types/deposit.go @@ -21,7 +21,7 @@ import ( ) const ( - depositRequestType = 0x01 + depositRequestType = 0x00 depositRequestSize = 192 + 1 )