From 58dd52e82e1bebdabad0260eb11f0f6081edb4e4 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 30 Jun 2016 14:50:47 -0700 Subject: [PATCH] hashcash: quick fix for string argument to checksum-bytes. --- extra/hashcash/hashcash.factor | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/extra/hashcash/hashcash.factor b/extra/hashcash/hashcash.factor index 008cd0ec87..95a8b43d47 100644 --- a/extra/hashcash/hashcash.factor +++ b/extra/hashcash/hashcash.factor @@ -1,8 +1,9 @@ ! Copyright (C) 2009 Diego Martinelli. ! See http://factorcode.org/license.txt for BSD license. -USING: accessors byte-arrays calendar calendar.format checksums -checksums.openssl classes.tuple fry kernel make math math.functions -math.parser math.ranges present random sequences splitting strings ; +USING: accessors calendar calendar.format checksums +checksums.openssl classes.tuple fry io.encodings.ascii +io.encodings.string kernel math math.functions math.parser +math.ranges present random sequences splitting ; IN: hashcash ! Hashcash implementation @@ -49,7 +50,7 @@ M: hashcash string>> hex >>suffix ; -- 2.34.1