Skip to content
This repository was archived by the owner on Oct 28, 2021. It is now read-only.

Commit 631cbd7

Browse files
committed
Fig bug picked up by unreferenced formal param warning.
1 parent a292ca2 commit 631cbd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libethereum/Transaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ struct Transaction
5555

5656
void fillStream(RLPStream& _s, bool _sig = true) const;
5757
bytes rlp(bool _sig = true) const { RLPStream s; fillStream(s, _sig); return s.out(); }
58-
std::string rlpString(bool _sig = true) const { return asString(rlp()); }
58+
std::string rlpString(bool _sig = true) const { return asString(rlp(_sig)); }
5959
h256 sha3(bool _sig = true) const { RLPStream s; fillStream(s, _sig); return eth::sha3(s.out()); }
6060
bytes sha3Bytes(bool _sig = true) const { RLPStream s; fillStream(s, _sig); return eth::sha3Bytes(s.out()); }
6161
};

0 commit comments

Comments
 (0)