From c4d0364a60a9e121621730b059d0ba1144fcff51 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Thu, 1 Nov 2012 15:03:06 +0100 Subject: [PATCH] Update a couple of copyright notices that missed Matts name. --- .../com/google/bitcoin/core/FullPrunedBlockChain.java | 2 +- .../src/main/java/com/google/bitcoin/core/Script.java | 11 ++++------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/core/src/main/java/com/google/bitcoin/core/FullPrunedBlockChain.java b/core/src/main/java/com/google/bitcoin/core/FullPrunedBlockChain.java index 286c712d..777d3610 100644 --- a/core/src/main/java/com/google/bitcoin/core/FullPrunedBlockChain.java +++ b/core/src/main/java/com/google/bitcoin/core/FullPrunedBlockChain.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 Google Inc. + * Copyright 2012 Matt Corallo. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/src/main/java/com/google/bitcoin/core/Script.java b/core/src/main/java/com/google/bitcoin/core/Script.java index 1b216c5a..743b2caa 100644 --- a/core/src/main/java/com/google/bitcoin/core/Script.java +++ b/core/src/main/java/com/google/bitcoin/core/Script.java @@ -1,5 +1,6 @@ /** * Copyright 2011 Google Inc. + * Copyright 2012 Matt Corallo. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,19 +17,15 @@ package com.google.bitcoin.core; +import org.spongycastle.crypto.digests.RIPEMD160Digest; + import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import java.math.BigInteger; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Iterator; -import java.util.LinkedList; -import java.util.List; - -import org.spongycastle.crypto.digests.RIPEMD160Digest; +import java.util.*; import static com.google.bitcoin.core.Utils.bytesToHexString;