Package org.ethereum.util

Examples of org.ethereum.util.Value.asInt()


  public void testTypes() {
    Value str = new Value("str");
    assertEquals(str.asString(), "str");

    Value num = new Value(1);
    assertEquals(num.asInt(), 1);

    Value inter = new Value(new Object[]{1});
    Object[] interExp = new Object[]{1};
    assertTrue(new Value(inter.asObj()).cmp(new Value(interExp)));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.