Skip to content

Commit

Permalink
fix transaction test failure (#15235)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuunlimm authored Nov 7, 2024
1 parent 0d53727 commit 8674bbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecosystem/indexer-grpc/indexer-test-transactions/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ mod tests {

#[test]
fn test_generate_transactions() {
let json_bytes = SCRIPTED_TRANSACTIONS_SIMPLE_USER_SCRIPT1;
let json_bytes = IMPORTED_TESTNET_TXNS_5979639459_COIN_REGISTER;
// Check that the transaction is valid JSON
let transaction = serde_json::from_slice::<Transaction>(json_bytes).unwrap();

assert_eq!(transaction.version, 53);
assert_eq!(transaction.version, 5979639459);
}
}

0 comments on commit 8674bbd

Please sign in to comment.