mirror of https://github.com/hyperledger/besu
Support chainId in CallParameters (#7720)
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net> Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com>pull/7729/head
parent
67d738c8a1
commit
5fd87d61f1
@ -0,0 +1,46 @@ |
||||
/* |
||||
* Copyright contributors to Hyperledger Besu. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
package org.hyperledger.besu.ethereum.core.json; |
||||
|
||||
import java.io.IOException; |
||||
import java.math.BigInteger; |
||||
|
||||
import com.fasterxml.jackson.core.JsonParser; |
||||
import com.fasterxml.jackson.databind.DeserializationContext; |
||||
import com.fasterxml.jackson.databind.deser.std.StdDeserializer; |
||||
import org.apache.tuweni.units.bigints.UInt256; |
||||
|
||||
public class ChainIdDeserializer extends StdDeserializer<BigInteger> { |
||||
|
||||
public ChainIdDeserializer() { |
||||
this(null); |
||||
} |
||||
|
||||
public ChainIdDeserializer(final Class<?> vc) { |
||||
super(vc); |
||||
} |
||||
|
||||
@Override |
||||
public BigInteger deserialize(final JsonParser jsonparser, final DeserializationContext context) |
||||
throws IOException { |
||||
final var chainId = |
||||
UInt256.fromHexString(jsonparser.getCodec().readValue(jsonparser, String.class)) |
||||
.toBigInteger(); |
||||
if (chainId.signum() <= 0) { |
||||
throw new IllegalArgumentException("Non positive chain id: " + chainId); |
||||
} |
||||
return chainId; |
||||
} |
||||
} |
Loading…
Reference in new issue