aboutsummaryrefslogtreecommitdiffstats
path: root/src/bls.cpp
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2016-09-05 14:07:32 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2016-09-05 14:07:32 +0800
commit9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f (patch)
tree31a571fcb3340e751ed5b32abe5b2ea6d1ff4cef /src/bls.cpp
parent12bb5c058ac2cd5775ae6f4c800792547896300c (diff)
downloaddexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.tar
dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.tar.gz
dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.tar.bz2
dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.tar.lz
dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.tar.xz
dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.tar.zst
dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.zip
follow new getStr() of mcl
Diffstat (limited to 'src/bls.cpp')
-rw-r--r--src/bls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bls.cpp b/src/bls.cpp
index 2fce4b3..03f7d16 100644
--- a/src/bls.cpp
+++ b/src/bls.cpp
@@ -178,7 +178,7 @@ template<class T>
std::ostream& writeAsHex(std::ostream& os, const T& t)
{
std::string str;
- t.getStr(str, 16, true);
+ t.getStr(str, mcl::IoHexPrefix);
return os << str;
}