From 8cd32275849a43b0e6cded93cb921be6c3b8bd2c Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 5 Jul 2017 21:34:44 +0200 Subject: [PATCH] mobile: Fix comment - correct direction & unify naming --- mobile/android_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/android_test.go b/mobile/android_test.go index 345e009b41..5e6c2c4f54 100644 --- a/mobile/android_test.go +++ b/mobile/android_test.go @@ -133,8 +133,8 @@ public class AndroidTest extends InstrumentationTestCase { Transaction postEIP155 = new Transaction(postEIP155RLP); preEIP155.getFrom(null); // Homestead should accept homestead - preEIP155.getFrom(new BigInt(4)); // EIP155 should accept homestead (missing chain ID) - postEIP155.getFrom(new BigInt(4)); // EIP155 should accept EIP 155 + preEIP155.getFrom(new BigInt(4)); // Homestead should accept EIP155 (missing chain ID) + postEIP155.getFrom(new BigInt(4)); // EIP155 should accept EIP155 try { postEIP155.getFrom(null);