Esempio n. 1
0
 @Test
 public void testAccountIDLedgerIndex() throws Exception {
   String addy = "rP1coskQzayaQ9geMdJgAV5f3tNZcHghzH";
   String LedgerIndex = "D66D0EC951FD5707633BEBE74DB18B6D2DDA6771BA0FBF079AD08BFDE6066056";
   Hash256 expectedLedgerIndex = Hash256.translate.fromString(LedgerIndex);
   AccountID accountID = AccountID.fromAddress(addy);
   Hash256 builtLedgerIndex = Index.accountRoot(accountID);
   assertEquals(expectedLedgerIndex, builtLedgerIndex);
 }
Esempio n. 2
0
 public Account accountFromSeed(String masterSeed) {
   IKeyPair kp = Seed.fromBase58(masterSeed).keyPair();
   return account(AccountID.fromKeyPair(kp), kp);
 }