http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/commit/03e392c158604525190634be9648eb77074d36ac
_user_sid('bob')+':C:5'] @@ -1710,15 +1728,15 @@ class CmdTestRegtest(CmdTestBase,CmdTestShared): def alice_twview_grouped(self): t = self.spawn('mmgen-tool',['--alice','twview','interactive=1']) prompt = 'abel:\b' - for s,dots in ( - ( 'o', False), - ( 'M', False), - ( 't',True), - ( 'q', True), + for grouped, send in ( + (False , 'o' ), # 'o' = group display + (False , 'M' ), # grouped address + ( True, 't'), # grouped TxID + (True , 'q' ), ): - if d ots : + if...