All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bccapi.bitlib.model.ScriptOutputStrange Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.bccapi.bitlib.model;

import java.io.Serializable;

/**
 * This class is used for output scripts that we do not understand
 */
public class ScriptOutputStrange extends ScriptOutput implements Serializable {
   private static final long serialVersionUID = 1L;

   protected ScriptOutputStrange(byte[][] chunks, byte[] scriptBytes) {
      super(scriptBytes);
   }

   @Override
   public Address getAddress(NetworkParameters network) {
      // We cannot determine the address from scripts we do not understand
      return Address.getNullAddress(network);
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy