Skip to content

Commit f8bc9c5

Browse files
committed
test: fix token credit rate decoding
1 parent 0514607 commit f8bc9c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/LibBlob.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ contract LibBlobTest is Test {
278278
}
279279

280280
function testDecodeTokenCreditRate() public view {
281-
bytes memory data = hex"a16472617465820184001ab34b9f101a7bc907151a00c097ce";
281+
bytes memory data = hex"a1647261746584001ab34b9f101a7bc907151a00c097ce";
282282
uint256 rate = LibBlob.decodeTokenCreditRate(data);
283283
assertEq(rate, 1000000000000000000000000000000000000);
284284
}

0 commit comments

Comments
 (0)