mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 21:17:54 -05:00
Fix consolidation request json (#7577)
Signed-off-by: Lucas Saldanha <lucascrsaldanha@gmail.com>
This commit is contained in:
@@ -40,8 +40,8 @@
|
||||
"consolidationRequests": [
|
||||
{
|
||||
"sourceAddress": "0x23618e81e3f5cdf7f54c3d65f7fbc0abf5b21e8f",
|
||||
"sourcePubKey": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"targetPubKey": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe"
|
||||
"sourcePubkey": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"targetPubkey": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe"
|
||||
}
|
||||
],
|
||||
"blockNumber": "0x4",
|
||||
|
||||
@@ -61,12 +61,12 @@ public class ConsolidationRequestParameter {
|
||||
}
|
||||
|
||||
@JsonGetter
|
||||
public String getSourcePubKey() {
|
||||
public String getSourcePubkey() {
|
||||
return sourcePubkey;
|
||||
}
|
||||
|
||||
@JsonGetter
|
||||
public String getTargetPubKey() {
|
||||
public String getTargetPubkey() {
|
||||
return targetPubkey;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user